-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistration.html
42 lines (41 loc) · 1.41 KB
/
Registration.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Registration or Sign Up form in HTML CSS | CodingLab</title>
<link rel="stylesheet" href="registration.css" />
</head>
<body>
<a href="index.html"><img src="./img/bot1.png" alt="" /></a>
<div class="wrapper">
<h2 style="color: aliceblue">Registration</h2>
<form style="background-color: transparent">
<div class="input-box">
<input type="text" placeholder="Enter your name" required />
</div>
<div class="input-box">
<input type="text" placeholder="Enter your email" required />
</div>
<div class="input-box">
<input type="password" placeholder="Create password" required />
</div>
<div class="input-box">
<input type="password" placeholder="Confirm password" required />
</div>
<div class="policy">
<input type="checkbox" />
<h3 style="color: aliceblue">I accept all terms & condition</h3>
</div>
<div class="input-box button">
<input type="Submit" value="Register Now" />
</div>
<div class="text">
<h3>
Already have an account? <b><a href="login.html">Login now</a></b>
</h3>
</div>
</form>
</div>
</body>
</html>