Newer
Older
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
<!DOCTYPE html>
<html>
<head>
{% for src in js %}
<script type="text/javascript" src="{{ src }}"></script>
{% endfor %}
{% for src in css %}
<link type="text/css" rel="stylesheet" href="{{ src }}">
{% endfor %}
<link type="text/css" rel="stylesheet" href="{{ url_for( 'send_app_files', path = 'app.css' ) }}">
<script type="text/javascript">
baseurl = "{{ baseurl }}";
</script>
</head>
<body>
<div class="icnml_login">
<h1 style="margin-bottom: 0px">ICNML</h1>
<h4 style="margin-top: 0px">International Close Non-Matches Library</h4>
<div class="ui-widget-header ui-corner-top icnml_login_top">Please enter your login information</div>
<form action="{{ url_for( 'do_login' ) }}" method="post">
<div class="ui-widget-content ui-corner-bottom icnml_login_form">
<div class="icnml_login_field">
<div style="text-align: right;">
<label for="username">Username</label>
</div>
<div>
<input id="username" type="text" style="width: 100%">
</div>
<div style="text-align: right;">
<label for="password">Password</label>
</div>
<div>
<input id="password" type="password" style="width: 100%">
</div>
</div>
<div class="icnml_login_button">
<input class="ui-button ui-widget ui-state-default ui-corner-all" type="submit" value="Login">
</div>
</div>
</form>
</div>
</body>
</html>