-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
31 lines (25 loc) · 1023 Bytes
/
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
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="CSS/signup-styles.css">
<title> Onle and Only Signup Page </title>
</head>
<body>
<div class="signup-form">
<h1>
Sign Up Now
</h1>
<form action="" method="POST">
<input class="input" type="email" id="email" name="email" required placeholder="Enter Your Email Here">
<input class="input" type="password" id="pass" name="pass" required placeholder="Enter Your Password Here">
<p> <span> <input type="checkbox" /> </span>Agree with our terms and conditions </p>
<button type="button" class="signup-btn" >Sign Up </button>
<hr>
<p class="or">OR</p>
<button type="button" class="google-btn" >Login with Google </button>
<p > Do you have a account ? <a href="Signin.html" target=_blank > SignIn </a></p>
</form>
</div>
</body>
</html>