-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (56 loc) · 2.5 KB
/
index.html
File metadata and controls
72 lines (56 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<title>Embarked</title>
<link rel="icon" type="image/x-icon" href="icos/favicon.png">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/login.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<link rel="stylesheet" type="text/css" href="css/components/form.css">
<link rel="stylesheet" type="text/css" href="css/components/menu.css">
<link rel="stylesheet" type="text/css" href="css/components/checkbox.css">
<link rel="stylesheet" type="text/css" href="css/components/checkbox2.css">
<link rel="stylesheet" type="text/css" href="css/components/bubble.css">
<link rel="stylesheet" type="text/css" href="css/components/table.css">
<link rel="stylesheet" type="text/css" href="css/components/formCards.css">
<script type="text/javascript" src="scripts/sha1.js"></script>
<script type="text/javascript" src="scripts/login.js"></script>
<script type="text/javascript" src="scripts/user.js"></script>
<script type="text/javascript" src="scripts/user_functions/hod.js"></script>
<script type="text/javascript" src="scripts/user_functions/faculty.js"></script>
<script type="text/javascript" src="scripts/user_functions/management.js"></script>
<script type="text/javascript" src="scripts/user_functions/student.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet"> -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
</head>
<body onload="checkLogin()">
<center>
<script type="text/javascript">
function crypto(){
var password = document.getElementById("password").value;
if(password!="")
password = CryptoJS.SHA1(password);
document.getElementById("password").value = password;
loginFunction();
}
</script>
<div class="content animated fadeIn" id="content">
<!-- load from here -->
<div class='login animated bounce'>
<form action='#' method='post'>
<input type='text' id='username' placeholder='Username' autofocus='autofocus'><br><br>
<input type='password' id='password' placeholder='Password'><br><br>
<input type='reset' value='CLEAR'>
<input type='button' value='LOGIN' onclick='crypto()'>
</form>
</div>
<!-- to here -->
</div>
</center>
<br><br><br>
</body>
</html>