-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
86 lines (85 loc) · 2.07 KB
/
index.php
File metadata and controls
86 lines (85 loc) · 2.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE HTML>
<html lang="zxx">
<head>
<title>Login Page</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<meta name="keywords" content="Login for zaarab's forum"/>
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- Meta tag Keywords -->
<!-- css files -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!-- Style-CSS -->
</head>
<body>
<!-- bg effect -->
<div id="bg">
<canvas></canvas>
<canvas></canvas>
<canvas></canvas>
</div>
<!-- //bg effect -->
<!-- title -->
<h1>zaarab Forum</h1>
<!-- //title -->
<!-- content -->
<div class="sub-main-w3">
<form action="#" method="post">
<h2>Login Now
<i class="fas fa-level-down-alt"></i>
</h2>
<div class="form-style-agile">
<label>
<i class="fas fa-user"></i>
Username
</label>
<input placeholder="Username" name="Name" type="text" required="">
</div>
<div class="form-style-agile">
<label>
<i class="fas fa-unlock-alt"></i>
Password
</label>
<input placeholder="Password" name="Password" type="password" required="">
</div>
<!-- checkbox -->
<div class="wthree-text">
<ul>
<li>
<label class="anim">
<input type="checkbox" class="checkbox" required="">
<span>Stay Signed In</span>
</label>
</li>
<li>
<a href="#">Forgot Password?</a>
</li>
</ul>
</div>
<!-- //checkbox -->
<input type="submit" value="Log In">
</form>
</div>
<!-- //content -->
<!-- copyright -->
<div class="footer">
<p><?php echo '© '. date("Y"). ' All Rights Reserved | Powered by <a href="https://www.facebook.com/2jmlab" target="_blank">2JM Lab Nig Ltd</a>';?>
</p>
</div>
<!-- //copyright -->
<!-- Jquery -->
<script src="js/jquery-3.3.1.min.js"></script>
<!-- //Jquery -->
<!-- effect js -->
<script src="js/canva_moving_effect.js"></script>
<!-- //effect js -->
</body>
</html>