-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignupform.html
31 lines (27 loc) · 928 Bytes
/
signupform.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
<!DOCTYPE html>
<html>
<head>
<title>Sign up form</title>
<meta charset="utf-8">
<link href="form.css" rel="stylesheet">
</head>
<body>
<form>
<div>
<h1>Create an Account</h1>
<button id="fb">Sign up With Faceook</button>
<hr>
<br>
</div>
<h2>Register Now</h2>
<div>
<input class="input-label" type = "text" name="User-Name" placeholder="Name"> <br>
<input class="input-label" type="email" name="Email" placeholder="Email"> <br>
<input class="input-label" type="password" name="password" placeholder="Password"> <br>
</div>
<input id="check" type="checkbox" >
I agree with<a href="#"> term and services</a> & <a href="#">Conditions</a> </input> <br>
<button class="btn" > Sign Up Now </button>
</form>
</body>
</html>