-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathhtmlfile.html
More file actions
58 lines (58 loc) · 2.19 KB
/
htmlfile.html
File metadata and controls
58 lines (58 loc) · 2.19 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Official Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="full-page">
<div class="sub-page">
<div class="navigation-bar">
<div class="logo">
<a href='photography.html'>Official Page</a>
</div>
<nav>
<ul id='MenuItems'>
<li><a href='#'>Home</a></li>
<li><a href='#'>Photos</a></li>
<li><a href='#'>Services</a></li>
<li><a href='#'>Contact</a></li>
</ul>
</nav>
</div>
<div class="row">
<div class="col-1">
<div class="form-box">
<div class="form">
<form class="login-form">
<center><h1 class="main-heading">Login Form</h1></center>
<input type="text"placeholder="user name"/>
<input type="password"placeholder="password"/>
<button>LOGIN</button>
<p class="message">Not Registered? <a href="#">Register</a></p>
</form>
<form class="register-form">
<center><h1 class="main-heading">Register Form</h1></center>
<input type="text" placeholder="user name"/>
<input type="text" placeholder="email-id"/>
<input type="password" placeholder="password"/>
<button>REGISTER</button>
<p class="message">Already Registered?<a href="#">Login</a>
</p>
</form>
</div>
</div>
</div>
<div class="col-1">
</div>
</div>
</div>
</div>
<script src='https://code.jquery.com/jquery-3.2.1.min.js'>
</script>
<script>
$('.message a').click(function(){$('form').animate({height: "toggle",opacity: "toggle"},"slow");});
</script>
</body>
</html>