-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
29 lines (25 loc) · 1.05 KB
/
SignUp.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width:device-width, initial-scale=1.0">
<title>Sign Up Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Create an Account!</h1>
<button class="fb">Sign Up with Google</button>
<hr>
<h4>Register Now!</h4>
<!--------------------------FORM-------------------------------->
<form action="">
<input type="text" placeholder="Name"><br><br>
<input type="email" placeholder="Email"><br><br>
<input type="password" placeholder="Password"><br><br>
<input type="checkbox"> I agree with <a href="#"> Terms and Conditions</a> & <a href="#"> Privacy Policy</a> <br><br>
<button class="btn">Sign Up Now!</button>
</form>
</div>
</body>
</html>