-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
53 lines (53 loc) · 2.18 KB
/
form.html
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
53
<html>
<head>
<title>GOTCHA!</title>
<link href="style.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Anton|Montserrat:400,600|Quicksand:400,500,700" rel="stylesheet">
</head>
<body>
<header>
<div class="header">
<h1 id="mainhead"><a href="index.html">GOTCHA!</a></h1>
<h3 id="underhead">Find your new friend here!</h3>
</div>
</header>
<div class="signup">
<h1>Sign Up</h1>
<h2>Fill the form below</h2>
<form class="signupform" action="interest.html" target="_blank">
<span>First Name</span><br>
<input type="text" name="firstname" placeholder="First Name"><br><br>
<span>Last Name</span><br>
<input type="text" name="lastname" placeholder="Last Name"><br><br>
<span>E-mail</span><br>
<input type="email" name="email" placeholder="[email protected]"><br><br>
<span>Password</span><br>
<input type="password" name="pass"><br>
<span>Confirm Password</span><br>
<input type="password" name="pass"><br><br>
<span>Gender</span><br>
<input type="radio" name="gender" value="male" checked>Male<br>
<input type="radio" name="gender" value="female">Female<br>
<input type="radio" name="gender" value="other">Other:
<input type="text" name="other" placeholder="Write you gender here..."><br><br>
<span>Country</span><br>
<select name="country">
<option value="indonesia">Indonesia</option>
<option value="usa">USA</option>
<option value="canada">Canada</option>
<option value="malaysia">Malaysia</option>
<option value="singapore">Singapore</option>
<option value="thailand">Thailand</option>
<option value="japan">Japan</option>
<option value="china">China</option>
</select><br><br>
<span>About You</span><br>
<textarea name="bio" cols="50" rows="5">Write something about you...</textarea><br><br>
<input type="submit" id="next" value="Next">
</form>
</div>
<footer>
Copyright © Dynamic Wave
</footer>
</body>
</html>