-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 2.07 KB
/
index.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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>蔵書管理システム - ログイン</title>
<script type="text/javascript" src="./js/lib/jquery-1.9.1.js"></script>
<script type="text/javascript" src="./js/login.js"></script>
<style type="text/css" id="login-css">
html {
height: 100%;
}
body {
height: 100%;
position: relative;
}
#contents {
height: 130px;
width: 40%;
min-width: 300px;
border: 3px solid skyblue;
border-radius: 20px;
position: relative;
top: 30%;
margin: auto;
text-align: center;
font-size: 1.3em;
}
#regen_password {
position: relative;
top: 50px;
font-size: 0.8em;
}
#regen_password fieldset {
width: 400px;
margin: auto;
}
</style>
</head>
<body>
<div id="contents">
<form id="login">
<table style="margin-top: 25px; margin-bottom: 3px; margin-left: auto; margin-right: auto">
<tr>
<th>アカウント</th>
<td>
<input type="text" id="account" value="" style="vertical-align: text-top" />
</td>
</tr>
<tr>
<th>パスワード</th>
<td>
<input type="password" id="password" value="" style="vertical-align: text-top" />
</td>
</tr>
</table>
<input type="submit" value="ログイン" />
</form>
<div id="regen_password">
<form method="post" action="./api/regen_password.cgi">
<fieldset>
アカウント <input type="text" name="account" value="" />
<input type="submit" value="新パスワード発行" />
</fieldset>
</form>
</div>
</div>
</body>
</html>