-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
85 lines (82 loc) · 3.04 KB
/
join.html
File metadata and controls
85 lines (82 loc) · 3.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join page</title>
<link rel="stylesheet" href="D:\css\join.css">
</head>
<header>
<h1>Get with our Community</h1>
</header>
<body>
<main>
<article id="second">
<form action="https://httpbin.org/get"
method="get">
<fieldset>
<legend>First Name *</legend>
<p>
<input type="text" name="first name"
id="first name" placeholder="Enter your first name"
required autofocus>
</p>
</fieldset>
<fieldset>
<legend>Last Name *</legend>
<p>
<input type="text" name="last name" id="last name" placeholder="Enter your last name"
required autofocus>
</p>
</fieldset>
<fieldset>
<legend>Email *</legend>
<p>
<input type="email" id="myEmail" placeholder="example@email.com" required autofocus>
</p>
</fieldset>
<fieldset>
<legend>Create Password *</legend>
<p>
<Label for="new password">New Password:</Label>
<input type="password" name="password" id="password" placeholder="Your Secret"
required autofocus>
</p>
<p>
<label for="confirm your password">Confirm Your Password:</label>
<input type="password" name="password" id="password" placeholder="Your secret" required autofocus>
</p>
</fieldset>
<fieldset>
<legend>Username *</legend>
<p>
<input type="text" name="username" id="username" placeholder="Your Username" required autofocus>
</p>
</fieldset>
<fieldset>
<legend>Phone Number *</legend>
<input type="tel" name="phone" id="phone" placeholder="tel:+">
</fieldset>
<fieldset>
<legend>Country *</legend>
<input type="text" name="country" id="country" placeholder="Tunisia">
</fieldset>
<fieldset>
<legend>Gender *</legend>
<select name="gender" id="gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</fieldset>
</form>
<button type="join"><span class="change"><a href="https://github.com">Sign up</a></span></button>
</article>
</main>
</body>
<footer>
<p class="other"><a href="#">Back To Top</a></p>
<p class="movee"><a href="my_own_project.html">Back ➔</a></p>
<p class="me">copyright © Maha Balghouthi</p>
</footer>
</html>