-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
72 lines (70 loc) · 3.33 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>Form</title>
</head>
<body>
<div class="content-area">
<div class="header">
<h1>
Registration
</h1>
<div class="header-row">
<!-- row -->
</div>
</div>
<form action="" method="post" autocomplete="off">
<div class="input-area">
<label for="full-name">Full Name</label>
<input type="text" name="full-name" id="full-name" placeholder="Enter your name" required>
</div>
<div class="input-area">
<label for="username">Username</label>
<input type="text" name="username" id="username" placeholder="Enter your username" required>
</div>
<div class="input-area">
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Enter your email" required>
</div>
<div class="input-area">
<label for="phone-number">Phone Number</label>
<input type="tel" name="phone-number" id="phone-number" placeholder="Enter your number">
</div>
<div class="input-area">
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Enter your password" required>
</div>
<div class="input-area">
<label for="confirm-password">Confirm Password</label>
<input type="password" name="confirm-password" id="confirm-password" placeholder="Confirm your password" required>
</div>
<div class="gender-area">
<div class="gender-title">
<h2>Gender</h2>
</div>
<div class="gender-input-area">
<div class="gender-input">
<input type="radio" name="gender" id="male" value="male" checked>
<label for="male">Male</label>
</div>
<div class="gender-input">
<input type="radio" name="gender" id="female" value="female">
<label for="female">Female</label>
</div>
<div class="gender-input">
<input type="radio" name="gender" id="none" value="none">
<label for="none">Prefer not to say</label>
</div>
</div>
</div>
<button type="submit">Register</button>
</form>
</div>
</body>
</html>