Files
WMU-CS4430-Project/var/www/search.html
2019-11-21 18:51:00 -05:00

26 lines
478 B
HTML

<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Who Would you like to search for</h2>
<input type="radio" name="type" value="username">Search By Username<br>
<input type="radio" name="type" value="name">Search By Name<br>
<textarea autofocus rows="1" cols="50">
</textarea>
<form action="/action_page.php">
<input type="text" name="usrname"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>