-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
35 lines (32 loc) · 1.27 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
30
31
32
33
34
35
<!doctype html>
<html>
<HEAD>
<TITLE> sign up<website>
<signup></signup> </TITLE>
<link rel="stylesheet" href="signup.css">
</HEAD>
<body>
<div class="captain">
<h1>Create An Account</h1>
<div class="signup-box">
<div class="left-box">
<form action="index.html">
<input type="text" placeholder="Your Name" required class="input-box">
<input type="text" placeholder="username" required class="input-box">
<input type="email" placeholder="Your Email ID" required class="input-box">
<input type="password" placeholder="Create Password" required class="input-box">
<input type="checkbox" name="" id="terms">
<label for="Terms">I accept the terms & conditions.</label>
<button type="submit">SIGN UP <span>⟶</span></button>
</form>
</div>
<div class="right-box">
<a href="" class="gl">Connect With Google</a>
<a href="" class="fl">Connect With Facebook</a>
<a href="" class="tl">Connect With Twitter</a>
</div>
</div>
<p class="Login">Already have an Account? <a href="#">Login Now</a></p>
</div>
</body>
</html>