-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg.html
62 lines (48 loc) · 2.51 KB
/
reg.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
62
<!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">
<link rel="stylesheet" href="reg.css" type="text/css">
<link rel="shortcut icon" type="image/png" href="./verify.png">
<title>Register</title>
</head>
<body>
<div class="register-box">
<h1>Register</h1>
<form>
<label for="first-name">First Name</label>
<input type="text" name="first-name" placeholder="input your first name" required> </br>
<label for="last-name">Last Name</label>
<input type="text" name="last-name" placeholder="input your last name" required> </br>
<label for="gender-male"> Male</label>
<input type="radio" name="gender-choice" value="choice-1">
<label for="gender-female"> Female</label>
<input type="radio" name="gender-choice" value="choice-1">
<label for="gender-other"> Other</label>
<input type="radio" name="gender-choice" value="choice-1"> </br>
<label for="email"> Email</label>
<input type="text" name="last-name" placeholder="name@mail.com" required> </br>
<label for="Date"> Date of Birth</label>
<input type="date"> </br>
<label for="tel">Tel</label>
<input type="tel" name="tel" id="tel" size="30" placeholder="07xxxxxxxx"> </br>
<label for="password"> Password</label>
<input type="password" name="password" placeholder="password"> </br>
<label for="confirm password"> confirm password</label>
<input type="password" name="password" placeholder="password"> </br>
<label for="agree">I agree to all terms and conditions</label>
<input type="checkbox" name="agree"> </br>
<input type="submit" name="" value="Register"><br>
<div class="main-web">
<a href="./log.html">I have an account</a><br><br>
<a href="home.html">Go to ChemogetGroceryStore</a>
</div>
<div class="copyrights">
All Rights Reserved.™ <br> ©2021 Nicholas Kipkoech.<br> Software Engineering Student.
</div>
</form>
</div>
</body>
</html>