This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogon2.html
68 lines (57 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Pragma" content="no-cache">
<title>ILLiad - Logon</title>
<#INCLUDE filename="include_head.html">
</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>
<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 col-md-8">
<label for="username">
Username
</label>
<input type="text" class="form-control" name="username" id="username" value="">
</div>
<div class="logon-field form-group col-md-8">
<label for="password">
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 ILLiad</button>
</form>
<div class="first-time-link">
<a href="http://library.ua.edu/">
<span aria-hidden="true" class="fas fa-user-plus"></span> UA Libraries
</a>
</div>
<div class="first-time-link">
<a href="https://www.lib.ua.edu/using-the-library/interlibrary-loan/">
<span aria-hidden="true" class="fas fa-user-plus"></span> ILL Home
</a>
</div>
<div class="first-time-link">
<a href="mailto:[email protected]" >
<span aria-hidden="true" class="fas fa-user-plus"></span> email the ILL staff
</a>
</div>
</main>
<#INCLUDE filename="include_footer.html">
</div>
</body>
</html>