Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 1 | <!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 | |
| 47 | #error { |
| 48 | margin: 16px auto; |
| 49 | color: #CE5650; |
| 50 | text-align: center; |
| 51 | |
| 52 | } |
| 53 | </style> |
| 54 | </head> |
| 55 | <body> |
| 56 | <div align="center"> |
| 57 | <img src="data/img/onos-logo.lg.png"/> |
| 58 | |
| 59 | <form method="post" action="j_security_check"> |
| 60 | <table> |
| 61 | <tr> |
| 62 | <td>User:</td> |
| 63 | <td><input id="username" name="j_username" type="text" autofocus/></td> |
| 64 | </tr> |
| 65 | <tr> |
| 66 | <td>Password:</td> |
| 67 | <td><input id="password" name="j_password" type="password"/></td> |
| 68 | </tr> |
| 69 | <tr> |
| 70 | <td colspan="2"><input id="submit" type="submit" value="Login"/></td> |
| 71 | </tr> |
| 72 | <tr> |
| 73 | <td colspan="2"><div id="error">Incorrect login credentials!</div></td> |
| 74 | </tr> |
| 75 | </table> |
| 76 | </form> |
| 77 | </div> |
| 78 | </body> |
| 79 | </html> |