-
Notifications
You must be signed in to change notification settings - Fork 0
/
CreateAccount.html
39 lines (37 loc) · 2.29 KB
/
CreateAccount.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="login.css" type="text/css">
</head>
<body>
<div class="SignUp" style="margin-top:10px;margin-left:0px;">
<h1>Sign Up</h1>
<p>Won't take up much of your time.</p>
<h5 style="margin-bottom:0px;margin-left:-200px;">Enter First Name</h5>
<input type="text" placeholder="First name" style="text-align: center;width:300px;height:28px; margin:20px 20px 20px 20px;">
<h5 style="margin-bottom:0px;margin-top:0px;margin-left:-215px;">Enter Surname</h5>
<input type="text" placeholder="Surname" style="text-align: center;width:300px;height:28px; margin:20px 20px 20px 20px;">
<h5 style="margin-bottom:0px;margin-top:0px;margin-left:-180px;">Enter Phone Number</h5>
<input type="text" placeholder="Phone number or email address" style="text-align: center;width:300px;height:28px; margin:20px 20px 20px 20px;">
<h5 style="margin-bottom:0px;margin-left:-210px;margin-top:0px;">Enter Password</h5>
<input type="text" placeholder="New password" style="text-align: center;width:300px;height:28px; margin:20px 20px 20px 20px;">
<h5 style="margin-bottom:0px;margin-left:-210px;margin-top:0px;">Date of Birth ❔</h5>
<input type="text" placeholder="DD/MM/YYYY" style="text-align: center;width:300px;height:28px; margin:20px 20px 20px 20px;">
<h5 style="margin-bottom:0px;margin-left:-240px;margin-top:0px;">Gender ❔</h5>
<div>
<input type="radio" name="gender" id="male"
value="M" />
<label for="male">Male</label>
<input type="radio" name="gender" id="female"
value="F" />
<label for="female">Female</label>
</div>
<p>By clicking Sign Up, you agree to our Terms and Conditions. You may receive email notifications from us and can opt out at any time.</p>
<button type="button" style="background-color:red;width:160px;height:28px;margin-left:85px;"><a href="Terms.html" style="text-decoration: none;color:black;">Sign up</a></button>
</div>
</body>
</html>