adding the initial html pages

This commit is contained in:
Bryan
2019-11-21 17:49:45 -05:00
parent 3cecfd5ab7
commit 94cbb0d559
8 changed files with 130 additions and 0 deletions

25
var/www/search.html Normal file
View File

@@ -0,0 +1,25 @@
<!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="number">Search By Number<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>