-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
52 lines (50 loc) · 1.63 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<!-- <form> -->
<div id="container">
<div><h3>Create a new account</h3></div>
<div>
<p>Create an account to continue enjoying uninterrupted
video and personalised experience
</p>
</div>
<div class="signin">
<img src="https://www.zee5.com/images/google-social-icon-circle.svg?ver=2.51.26"/>
<a>Sign in</a>
</div>
<div class="or">
<div>
or
</div>
</div>
<input class="number" type="tel" placeholder="Mobile Number" />
<div class="line"></div>
<div>
<p class="terms"> By proceeding you agree to our
<span>Terms and Services</span> & <span>Privacy Policy</span>
.
</p>
</div>
<div class="otp">
<p>
<a class="sendotp">Send OTP</a>
</p>
</div>
<div>
<p>Already registered?
<a class="login" href="login.html">login</a>
</p>
</div>
</div>
<!-- </form> -->
</body>
<script src="signup.js"></script>
</html>