-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogon2.html
75 lines (62 loc) · 2.2 KB
/
Logon2.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
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Pragma" content="no-cache">
<title>ILL | Logon</title>
<#INCLUDE filename="include_head.html">
<!-- <script>
function myFunction() {
var x = document.getElementById("forgot-password-text");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script> -->
</head>
<body>
<#INCLUDE filename="include_header.html">
<div class="alerts-bar">
<div class="container" id="webAlerts"></div>
</div>
<div class="container">
<main id="content" aria-label="Content">
<div id="status" class="container"><#STATUS></div>
<div class="logon-wrapper col-md-4">
<form action="<#DLL>" method="post" name="Logon">
<input type="hidden" name="ILLiadForm" value="Logon">
<#FORMSTATE>
<!-- <div class="logon-directions">
<div>Enter your user information below.</div>
<div>Then press the Logon to ILLiad button to continue.</div>
</div> -->
<div class="logon-field form-group">
<label for="username">
BC Username
</label>
<input type="text" class="form-control" name="username" id="username" value="">
</div>
<div class="logon-field form-group">
<label for="password">
BC Password
</label>
<input type="password" name="password" class="form-control" id="password" autocomplete="off">
</div>
<button class="btn btn-primary btn-md" type="submit" name="SubmitButton" value="Logon to ILLiad">Logon to ILL</button>
</form>
</div>
<!-- <div class="forgot-password-link">
<a href="#forgot-password-text" onclick="myFunction()">
<span aria-hidden="true" class="fas fa-question-circle"></span> Forgot Password?
</a>
<div id="forgot-password-text" style="display:none;">
Your password hint is: Your BC Password.
</div>
</div> -->
</main>
<#INCLUDE filename="include_footer.html">
</div>
</body>
</html>