-
Notifications
You must be signed in to change notification settings - Fork 0
/
member.html
81 lines (81 loc) · 3.31 KB
/
member.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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>Membership</title>
<link rel="icon" type="image/png" href="assets/logo.png">
<link rel="stylesheet" href="member.css">
</head>
<body>
<header>
<span>
<img src="assets/logo.png" alt="" width="30%" class ="logo">
</span>
<span>
<a href="index.html" target="_self"><button class="home">Home</button></a>
</span>
<span>
<a href="member.html"><button class="member">Membership</button></a>
</span>
</header>
<span class="signuptxt"><h1 class="txt">Sign Up to Doujube</h1></span>
<main>
<form action="" method="GET" class="forms">
<table>
<tr>
<td><label for="name">Full name</label></td>
<td> : </td>
<td>
<input type="text" name="name" id="name" placeholder="Enter your name">
</td>
</tr>
<tr>
<td><label for="email">Email</label></td>
<td> : </td>
<td>
<input type="email" name="email" id="email" placeholder="Enter your email">
</td>
</tr>
<tr>
<td><label for="pass">Password</label></td>
<td> : </td>
<td>
<input type="password" name="pass" id="pass" placeholder="Enter your password">
</td>
</tr>
<tr>
<td><label for="gender">Gender</label></td>
<td> : </td>
<td>
<input type="radio" name="gender" id="m"><label for="m">Male</label>
<input type="radio" name="gender" id="f"><label for="f"> Female</label>
</td>
</tr>
<tr>
<td><label for="add">Address</label></td>
<td> : </td>
<td>
<input type="text" name="add" id="add" placeholder="Enter your address">
</td>
</tr>
<tr>
<td><label for="agree">I Agree to the terms and conditions</label></td>
<td> : </td>
<td>
<input type="radio" name="agree" id="agree"><label for="agree">I agree</label>
</td>
</tr>
</table>
<input type="submit" value="Submit">
</form>
</main>
<footer>
<p class="cr">@2020 Created by DJ20-1</p>
<a href="https://twitter.com/home" target="_blank"><img class="twt"src="assets/twitter-icon.svg" alt="" width="10%"></a>
<a href="https://www.instagram.com/" target="_blank"><img class="ig"src="assets/instagram-icon.svg" alt="" width="10%"></a>
<a href="https://www.facebook.com/" target="_blank"><img class="fb"src="assets/facebook-icon.svg" alt="" width="10%"></a>
</footer>
</body>
</html>