-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.php
48 lines (47 loc) · 2.02 KB
/
signup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<title>Register for First Impressions...</title>
<link href="signup.css" type="text/css" rel="stylesheet">
<script>
function back()
{
window.location.replace("feed.php");
}
</script>
</head>
<body>
<section id = "background">
<nav>
<h1 style="display:inline" >First Impressions</h1>
<div class="dropdown">
<button class="dropbtn">Categories
</button>
<div class="dropdown-content">
<a href="feed.php" onclick="setCategory(6)">Nature</a>
<a href="feed.php" onclick="setCategory(1)">Travel</a>
<a href="feed.php" onclick="setCategory(11)">Animals</a>
<a href="feed.php" onclick="setCategory(2)">Music</a>
<a href="feed.php" onclick="setCategory(3)">People</a>
<a href="feed.php" onclick="setCategory(4)">Food</a>
<a href="feed.php" onclick="setCategory(5)">Pop Culture</a>
<a href="feed.php" onclick="setCategory(7)">Books</a>
<a href="feed.php" onclick="setCategory(8)">Movies</a>
<a href="feed.php" onclick="setCategory(9)">Daily Life</a>
<a href="feed.php" onclick="setCategory(10)">Misc</a>
</div>
</div>
</nav>
<h1 id="title">Register for First Impressions!</h1>
<div id = "sign_up_pannel">
<form action = "register.php" method="post" >
<h3 id="user_title">Username</h3> <input id = "userbox" type ="text" name = "username"/>
<h3 id="user_pass">Password</h3> <input id="userbox" name="password" type="password"/>
<h3 id="user_pass">Email</h3> <input id="userbox" name="email" type="email"/>
<br><br><br>
<input id="submit" type="submit" value = "Register"/>
</form>
<button id="back_btn" onclick="back()">Back</button>
</div>
</section>
</body>
</html>