-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 903 Bytes
/
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
<html>
<head>
<meta charset="utf-8">
<title>Login</title>
<link href="css/main.css" rel="stylesheet">
<link href="jqui/themes/ui-darkness/jquery-ui.css" rel="stylesheet">
<link href="css/slidesoverride.css" rel="stylesheet">
<script src="jqui/jquery-1.9.0.js"></script>
<script src="jqui/ui/jquery-ui.js"></script>
<script src="scripts/hash.js"></script>
<script src="scripts/login.js"></script>
</head>
<body>
<form target="admin.php">
<input type="password" id="password" />
<input type="submit" id="login" value="Login" />
</form>
<div id="error" class="ui-widget" style="display: none;">
<div class="ui-state-error ui-corner-all" style="padding: 2px;">
<p>
<span class="ui-icon ui-icon-alert" style="float: left; margin-right: 10px;"></span>
<span id="message">MSG</span>
</p>
</div>
</div>
</body>
</html>