error.html
2.02 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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ONOS Login</title>
<style type="text/css">
img {
margin: 24px;
}
td {
font: normal 16px Helvetica, Arial, sans-serif !important;
text-align: left;
padding: 4px;
}
input {
font: normal 16px Helvetica, Arial, sans-serif !important;
padding: 3px;
}
input[type="submit"] {
margin-top: 20px;
margin-left: auto;
margin-right: auto;
display: block;
padding: 4px 16px;
background-color: #CE5650;
color: #fff;
/*width: 100%; /!* width of image *!/*/
height: 32px;
border-radius: 3px;
border: 0;
-moz-outline-radius: 6px;
}
input[type="submit"]:hover {
border-radius: 3px;
border: 1px;
border-color: #fff;
border-style: solid;
box-shadow: 0px 0px 10px #3399ff;
outline-style: solid;
outline-width: 3px;
outline-color: #3399ff;
}
#error {
margin: 16px auto;
color: #CE5650;
text-align: center;
}
</style>
</head>
<body>
<div align="center">
<img src="data/img/onos-logo.lg.png"/>
<form method="post" action="j_security_check">
<table>
<tr>
<td>User:</td>
<td><input id="username" name="j_username" type="text" autofocus/></td>
</tr>
<tr>
<td>Password:</td>
<td><input id="password" name="j_password" type="password"/></td>
</tr>
<tr>
<td colspan="2"><input id="submit" type="submit" value="Login"/></td>
</tr>
<tr>
<td colspan="2"><div id="error">Incorrect login credentials!</div></td>
</tr>
</table>
</form>
</div>
</body>
</html>