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

14
var/www/contacts.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Heres Your Stupid Fucking Contacts</h2>
</body>
</html>

14
var/www/findFriend.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Heres Where you find other stupid people</h2>
</body>
</html>

14
var/www/friends.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Heres Your Stupid Fucking Friends</h2>
</body>
</html>

21
var/www/landingPage.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Friendbook</h2>
<button type="button" onclick="window.location.href = 'friends.html'">See Friends</button>
<button type="button" onclick="window.location.href = 'messages.html'">See Messages</button>
<button type="button" onclick="window.location.href = 'contacts.html'">See Contacts</button>
<button type="button" onclick="window.location.href = 'search.html'">Search</button>
<button type="button" onclick="window.location.href = 'sendMessage.html'">Message Someone</button>
<button type="button" onclick="window.location.href = 'findFriend.html'">Find a New Friend</button>
<button type="button" onclick="window.location.href = 'pendingFriend.html'">Check Pending Friends</button>
</body>
</html>

14
var/www/messages.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Heres Your Stupid Fucking Messages</h2>
</body>
</html>

View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Heres Your Stupid Pending Friends</h2>
</body>
</html>

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>

14
var/www/sendMessage.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<body>
<style>
body {
background-color: #3B5998;
}
</style>
<h2><font color="white">Heres where you send your dumbass messages</h2>
</body>
</html>