-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponsive Registration form.html
More file actions
61 lines (58 loc) · 2.48 KB
/
Copy pathResponsive Registration form.html
File metadata and controls
61 lines (58 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>Responsive Registration Form</title>
<link rel="stylesheet" href="Responsive Registration form.css">
</head>
<body>
<div class="conatiner">
<form action="">
<h1>Registration Form</h1>
<div class="content">
<div class="input-box">
<label>User Name:</label>
<input type="text" name="username" placeholder="Enter Your User Name" required autocomplete="off">
</div>
<div class="input-box">
<label> Name:</label>
<input type="text" name="name" placeholder="Enter Your Name" required autocomplete="off">
</div>
<div class="input-box">
<label>Email:</label>
<input type="Email" name="email" placeholder="Enter Your Email" required autocomplete="off">
</div>
<div class="input-box">
<label>Phone:</label>
<input type="num" name="phone" placeholder="Enter Your Phone" required autocomplete="off">
</div>
<div class="input-box">
<label>Password:</label>
<input type="password" name="password" placeholder="Enter Your Password" required autocomplete="off">
</div>
<div class="input-box">
<label>Conform Password:</label>
<input type="password" name="passwords" placeholder="Enter Your Conform-Password" required autocomplete="off">
</div>
<span class="gender-title">Gender</span>
<div class="gander-category">
<input type="radio" name="gender" id="male">
<label>Male</label>
<input type="radio" name="gender" id="female">
<label>Male</label>
<input type="radio" name="gender" id="other">
<label>Other</label>
</div>
</div>
<div class="alert">
<p>By clicking sing up,you ageer to our <a href="#terms">Terms,</a><a href="#">Privacy Policy</a> and <a href="#">cookies policy</a>.You may receive sms notification from us and can opt out at any time.</p>
</div>
<div class="button-conatiner">
<button type="submit">Registration</button>
</div>
</form>
</div>
</body>
</html>