-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.html
More file actions
70 lines (64 loc) · 2.42 KB
/
account.html
File metadata and controls
70 lines (64 loc) · 2.42 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="main.css">
<title>Linkarts</title>
</head>
<body bgcolor="skyblue">
<h1 class="head">Create account</h1>
<form method="post" id="register-form">
<div>
<label>Username:</label><br/>
<input class="input-items" type="text" name="Username"><br/>
</div>
<div>
<label>Email address:</label><br/>
<input class="input-items" type="email" name="email"><br/>
</div>
<div>
<label>Password:</label><br/>
<input class="input-items" type="password" name="Password"><br/>
</div>
<div>
<label>Confirm password</label><br/>
<input class="input-items" type="text" name="confirm-password"><br/>
</div>
<div>
<label>Gender</label><br/>
<input type="radio" name="male" value="male">Male</input>
<input type="radio" name="female" value="female">Female</input>
<input type="radio" name="others" value="others">Others</input><br/><br/>
</div>
<div>
<label>Country</label><br/>
<input list="countries" name="countries">
<datalist class="put" id="countries">
<option value="Kenya">
<option value="Zambia">
<option value="India">
<option value="Canada">
<option value="Germany">
<option value="Spain">
<option value="Mauritius">
<option value="Ireland">
</datalist>
</div>
<div>
<label>Security Question</label>
<select class="put" name="security-question">
<option>What was your first pet's name</option>
<option>What was your first job</option>
<option>What is your nick name</option>
</select>
</div>
<div>
<textarea class="input-items put" name="answer" rows="6" cols="30"></textarea>
</div>
<div>
<input type="checkbox"id="terms-conditions" name="terms-conditions" value="accept">I agree to the terms and conditions</input>
</div>
<input type="submit" class="click" name="register" value="Register">
</form>
</body>
</html>