-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (29 loc) · 1.18 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Login</title>
<script>
screen.orientation.lock('portrait');
</script>
<link href="scripts/index.css" rel="stylesheet"/>
<!-- sweet alert -->
<script src="scripts/sweetalert/sweetalert.min.js"></script>
<link rel="stylesheet" href="scripts/sweetalert/sweetalert.css">
<script src="scripts/globals.js"></script>
<script src="scripts/index.js"></script>
</head>
<body id="body">
<p id="logo"><b id="jms">JMS</b> Reporting Tool</p>
<form action="javascript:post();" id="form">
<input type="text" id="uname" class="round_corners" placeholder="Username" required/>
<br>
<input type="password" id="pswd" class="round_corners" placeholder="Password" required/>
<br><br>
<input type="submit" id="login" value="Login" class="round_corners"/>
</form>
<footer>
(Powered by <a href="http://www.jermtechnology.com" style="color:#009494">JERM Technology</a>)
</footer>
</body>
</html>