-
Notifications
You must be signed in to change notification settings - Fork 0
/
index11.html
44 lines (43 loc) · 1.67 KB
/
index11.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>User Registration Form</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<section class="register">
<center><h1 style="font-size:160%;color:#C71585;font-family;courier">User Reistration Form</h1></center>
<form method="post" action="index.html">
<div class="reg_section personal_info">
<h3>Your Personal Information</h3>
<input type="text" name="full name" value="" placeholder="Your full name">
<input type="text" name="username" value="" placeholder="Your Desired Username">
<input type="text" name="email" value="" placeholder="Your E-mail Address">
</div>
<div class="reg_section password">
<h3>Your Password</h3>
<input type="password" name="password" value="" placeholder="Your Password">
<input type="password" name="confirm" value="" placeholder="Confirm Password">
</div>
<div class="reg_section password">
<h3>Your Address</h3>
<input type="text" name="adress" value="" placeholder="your adress">
<input type="text" name="city" value="" placeholder="your city">
<h3>Your Pincode</h3>
<input type="text" name="pincode" value="" placeholder="Your area's pincode">
</div>
<p class="terms">
<label>
<input type="checkbox" name="remember_me" id="remember_me">
I accept cleaNdia the Terms & Condition
</label>
</p>
<p class="submit"><input type="submit" name="commit" value="reister"></p>
</form>
</section>
</div>
</body>
</html>