-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathsignup.html
57 lines (50 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<link href="../css/loginsignup.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>SIGNUP</title>
</head>
<body>
<div id="one">
<div class="vl"></div>
<div align="left" id="one1">
SIGN UP
</div>
<div id="one2" align="right">
<a href="./login.html">Login</a>
<a href="../index.html">Home </a>
</div>
<div id="wel">Sign Up For Free</div>
<form class="form" name="form" method="post" data-aos='zoom-in'>
<ul>
<li>
<label>Name</label>
<input type="text" name="name" maxlength="100">
<span>Enter your full name</span>
</li>
<li>
<label>Email</label>
<input type="email" name="email" maxlength="100">
<span>Enter your registered email here</span>
<li>
<label>Set a Password</label>
<input type="password" name="password">
<span>Enter Password here</span>
</li>
<li>
<input type="submit" value="Get Started" >
</li>
</ul>
</form>
<br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br>
</div>
</div>
<!-- Importing Aos Package for "animation on scroll" -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>