-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
36 lines (33 loc) · 1.07 KB
/
Index.html
File metadata and controls
36 lines (33 loc) · 1.07 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="loginworks.css"
</head>
<body>
<div class="login-page">
<div class="form">
<form class="register-form">
<input type="text" placeholder="Username"/>
<input type="text" placeholder="Password"/>
<input type="text" placeholder="Email Id"/>
<button>Create</button>
<p class="message">Already Registered? <a href="#"> Login</a></p>
</form>
<form class="login-form">
<input type="text" placeholder="Username"/>
<input type="password" placeholder="Password"/>
<form> <input type="button" value="Login" onclick="window.location.href='Home.html'" />
</form>
<p class="message"> Not Registered? <a href="#">Register</a></p>
</form>
</div>
</div>
<script src='https://code.jquery.com/jquery-3.3.1.min.js'>
</script>
<script>
$('.message a').click(function() {
$('form').animate({height: "toggle", opacity: "toggle"}, "slow");
});
</script>
</body>
</html>