blob: d3a9dad97b0d5c4f91f605ca133176e642f73fa1 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dashboard Login</title>
<style type="text/css">
#invalid {
color: red;
}
</style>
</head>
<body onload="document.getElementById('username').focus();">
<p>You must login to continue to the Dashboard. Please login with the
administrator username and password used for your GSA.</p>
<p id='invalid'>Failed communicating with the GSA.</p>
<form action="" method="POST">
<table style="border: none">
<tr>
<td><label for="username">Username</label></td>
<td><input type="text" name="username" id="username"></td>
</tr>
<tr>
<td><label for="password">Password</label></td>
<td><input type="password" name="password" id="password"></td>
</tr>
<tr><td></td><td><input type="submit" value="Submit"/></td></tr>
</table>
</form>
</body>