-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
74 lines (73 loc) · 3.3 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<Title>Signup -Tokners</Title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="signup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.css">
</head>
<body>
<div class="one">
<div class="Tokners" onclick="window.location.href='index.html'">
<img src="logo.jpg" >Tokners
</div>
<div class="two">
<div class="three">
<div class="Our-team">OUR TEAM</div>
<div class="Tokens">TOKENS</div>
<div class="Connect">CONNECT WALLET</div>
<div class="Lightpaper">LIGHTPAPER</div>
</div>
<div class="Sign">
<a href="signin.html">
<button type="button" class="Signin" href="#">
<div>SIGN IN</div>
</button>
</a>
<a href="signup.html">
<button type="button" class="Signup">
<div>SIGN UP</div>
</button>
</a>
</div>
</div>
</div>
<div class="main">
<div class="container">
<h1>SIGNUP HERE</h1>
<hr>
<br>
<form>
<input type="text" placeholder="Name"><br><br>
<input type="email" placeholder="Email"><br><br>
<input type="tel" placeholder="Phone Number"><br><br>
<input type="password" placeholder="Password (8 characters atleast)" id="PassEntry" class="form-control passwordInput"><br><br>
<span id="StrengthDisp" class="badge displayBadge">Weak</span><br>
<!-- <button class="account-signin" type="button">Forgot Password</button> -->
<button class="signup-submit" type="submit">SIGNUP</button>
<p style="color:#fff ;">Already have an account?<a style="text-decoration: none;color:#2278D4" href="./signin.html"> Signin here</a></p>
</form>
</div>
<div class="seven">
<img src="img.png">
</div>
</div>
<div class="footer-2">
<div class="Tokners-1">
<img src="logo.jpg">Tokners
</div>
<div class="social">
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-telegram"></a>
<a href="#" class="fa fa-github"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-reddit"></a>
</div>
<div class="copyright">© 2021 Tokners. All rights reserved.</div>
</div>
</body>
<script src="signup.js"></script>
</html>