blob: d05260fad23a2aa8e49a46924a886e8e40e8c5a4 [file] [log] [blame]
Thomas Vachuskaeff0e4e2015-08-11 00:26:24 -07001<!DOCTYPE html>
2<html>
3<head>
4 <meta charset="UTF-8">
5 <title>ONOS Login</title>
6
7 <style type="text/css">
8 img {
9 margin: 24px;
10 }
11 td {
12 font: normal 16px Helvetica, Arial, sans-serif !important;
13 text-align: left;
14 padding: 4px;
15 }
16 input {
17 font: normal 16px Helvetica, Arial, sans-serif !important;
18 padding: 3px;
19 }
20
21 input[type="submit"] {
22 margin-top: 20px;
23 margin-left: auto;
24 margin-right: auto;
25 display: block;
26 padding: 4px 16px;
27 background-color: #CE5650;
28 color: #fff;
29 /*width: 100%; /!* width of image *!/*/
30 height: 32px;
31 border-radius: 3px;
32 border: 0;
33 -moz-outline-radius: 6px;
34 }
35
36 input[type="submit"]:hover {
37 border-radius: 3px;
38 border: 1px;
39 border-color: #fff;
40 border-style: solid;
41 box-shadow: 0px 0px 10px #3399ff;
42 outline-style: solid;
43 outline-width: 3px;
44 outline-color: #3399ff;
45 }
46 </style>
47</head>
48<body>
49<div align="center">
50 <img src="data/img/onos-logo.lg.png"/>
51
52 <form method="post" action="j_security_check">
53 <table>
54 <tr>
55 <td>User:</td>
56 <td><input id="username" name="j_username" type="text" autofocus/></td>
57 </tr>
58 <tr>
59 <td>Password:</td>
60 <td><input id="password" name="j_password" type="password"/></td>
61 </tr>
62 <tr>
63 <td colspan="2"><input id="submit" type="submit" value="Login"/></td>
64 </tr>
65 </table>
66 </form>
67</div>
68</body>
69</html>