-
Notifications
You must be signed in to change notification settings - Fork 1
/
qmics.html
executable file
·34 lines (34 loc) · 1.14 KB
/
qmics.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<!--meta name="viewport" content="width=device-width,user-scalable=no"-->
<link rel="stylesheet" type="text/css" href="style/login.css">
</head>
<script type="text/javascript">
function getRemember(){
if(typeof(Storage)==="undefined"){
return;
}
console.log("tr");
if(localStorage.hasOwnProperty("userData") ){
document.getElementsById("uid").value = localStorage.getItem("userData");
}
}
function setRemember(){
}
</script>
<body onload="getRemember()">
<div class = "login">
<form id="loginform" name="input" action="script/qmics_entry.php" method="post" onsubmit="setRemember()">
<input type="hidden" name="action" value="library" />
<div>Username:</div> <input id="uid" type="text" name="user" value=""/>
<div>Password:</div> <input id="pid" type="password" name="pass" value=""/>
<input id ="btn" type="submit" value="Enter"/>
</form>
</div>
<div id="versionInfo">
Version 2.150127
</div>
</body>
</html>