-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFinalP.html
More file actions
52 lines (42 loc) · 1.74 KB
/
FinalP.html
File metadata and controls
52 lines (42 loc) · 1.74 KB
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
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="FinalP.css">
<!--script type="text/javascript" src="FinalPJ.js"></script-->
</head>
<body>
<!--Form - help an user input -->
<form action="/action_page.php" class="pure-form" text-align:"center">
<div class="container">
<h1>Register</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<!-- Username/Name -->
<label for="name"><b>Username</b></label>
<input type="text" placeholder="Enter username" name="name" required/>
<!--Email-->
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required/>
<!-- Password -->
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="pws" id="password" required/>
<!-- Repeat Password
<label for="pws-r"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="pws-r" id="confirm_password" required-->
<!-- Birthday Info -->
<label for="bd"><b>Birthday</b></label>
<input type="date" name="bday">
<!-- Gender Info -->
<div><br>
<label for="gend"><b>What is your gender?</b></label>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<input type="radio" name="gender" value="Other"> Other </div>
<hr> <!--Horizontal Rule -->
</form>
<form action="tinderforfriends.html">
<button type="submit" class="registerb" >Register</button>
</form>
<div class="top-left">BUDDIES</div>
</body>
</html>