-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
41 lines (34 loc) · 1.27 KB
/
page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Animated login page</title>
<link rel="stylesheet" href="main.css">
<script src="https://code.jquery.com/jquery-1.10.2.min.js"
integrity="sha256-C6CB9UYIS9UJeqinPHWTHVqh/E1uhG5Twh+Y5qFQmYg=" crossorigin="anonymous"></script>
<script src="JQUERY%20Main.js"></script>
</head>
<body>
<div id="box">
<div id="loginform">
<h1>LOGIN FORM</h1>
<input type="email" placeholder="Email" /><br>
<input type="password" placeholder="Password" /><br>
</div>
<div id="signupform">
<h1>SIGN UP</h1>
<input type="text" placeholder="Full Name" /><br>
<input type="email" placeholder="Email" /><br>
<input type="password" placeholder="Password" /><br>
<button>SIGN UP</button>
</div>
<div id="login_msg">Have an account?</div>
<div id="signup_msg">Don't have an account?</div>
<div id="main"></div>
<button id="login_btn">LOG IN</button>
<button id="signup_btn">SIGN UP</button>
</div>
</body>
</html>