forked from satya9500/kenko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforest.html
More file actions
73 lines (56 loc) · 2.1 KB
/
Copy pathforest.html
File metadata and controls
73 lines (56 loc) · 2.1 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="forest.css">
<title>KENKO</title>
</head>
<body>
<nav>
<ul id="right">
<li style="cursor: pointer;"><a style="text-decoration: none;color:white;" href="reg.html">CONNECT ›</li>
<li><a style="text-decoration: none;color:white;" href="home.html"> CONTACT US ›</a></li>
<li><a style="text-decoration: none;color:white;" href="about.html"> ABOUT US ›</a></li>
<li><a style="text-decoration: none;color:white;" href="home.html">HOME ›</a></li>
</ul>
<img src="kenkologo.jpg" height="70px" width="70px" >
<ul id="left">
<br>
<br>
<li>KENKO</li>
</ul>
</nav>
<button onclick="document.getElementById('id01').style.display='block'" style="width:auto; margin-top:300px">ACCESS</button>
<div id="id01" class="modal">
<form class="modal-content animate" action="/action_page.php">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
<img src="img_avatar2.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<button type="submit">Login</button>
<label>
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
<span class="psw">Forgot <a href="#">password?</a></span>
</div>
</form>
</div>
<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</body>
</html>