forked from burinious/CSH_TEAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign_up.html
61 lines (54 loc) · 2.71 KB
/
sign_up.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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link rel="stylesheet" type="text/css" href="./css/sign_up.css">
<link rel="Signup" type="text/html" href="sign_up.html">
</head>
<body>
<div class="topnav">
<a class="active" href="index.html">Home</a>
<a href="#team">Team</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
<h1>SIGN UP</h1>
<div class="sign-up-form">
<form class="authenticate" action="#">
<div class="container">
<label for="Fname"><b>First Name</b></label>
<input type="text" placeholder="" name="Fname" required>
<label for="Lname"><b>Second Name</b></label>
<input type="text" placeholder="" name="Lname" required>
<label for="Addr"><b>Address</b></label>
<input type="text" placeholder="" name="Addr" required>
<label for="City"><b>City</b></label>
<input type="text" placeholder="" name="City" required>
<label for="Natio"><b>Nationality</b></label>
<input type="text" placeholder="" name="Natio" required>
<label for="email"><b>Email Address</b></label>
<input type="email" placeholder="Enter Email" name="email" required>
<label for="Pnum"><b>Phone Number</b></label>
<input type="tel" placeholder="" name="Pnum" required><br>
<label for="Uname"><b>User Name</b></label>
<input type="text" placeholder="" name="Uname" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Password" name="psw" required>
<label for="Cpsw"><b>Confirm Password</b></label>
<input type="password" placeholder="Password" name="Cpsw" required>
<label for="security">Security Questions</label>
<select name="security" required>
<option disabled selected></option>
<option value="Mr">What's the name of your favourite uncle?</option>
<option value="Mrs">What's the name of your favourite car?</option>
<option value="Ms">What's the name of your pet?</option>
<option value="Engr">what's your mother's maiden name?</option>
<option value="Dr">what's your favourite city?</option>
</select><br>
<button type="submit" class="Signup">Sign Up</a></button>
</div>
</form>
</div>
</body>
</html>