2017-10-18 01:47:09 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2018-06-19 09:56:04 -05:00
|
|
|
<title data-i18n-text="Authentication Request"></title>
|
2017-10-18 01:47:09 -05:00
|
|
|
<style>
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
height: 100%;
|
|
|
|
font-family: sans-serif;
|
2018-06-19 09:56:04 -05:00
|
|
|
font-size: 14px;
|
2017-10-18 01:47:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
padding: 20px
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
padding-top: 10px;
|
|
|
|
text-align: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hostname {
|
|
|
|
font-size: .9em;
|
|
|
|
}
|
|
|
|
|
2017-11-09 06:01:38 -06:00
|
|
|
.credentials-error {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2017-10-18 01:47:09 -05:00
|
|
|
form {
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-spacing: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 200px;
|
|
|
|
height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2017-10-18 02:14:57 -05:00
|
|
|
button {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
2017-10-18 01:47:09 -05:00
|
|
|
.footer {
|
|
|
|
display: flex;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-container {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
2018-06-19 09:56:04 -05:00
|
|
|
<span data-i18n-text="Please provide your login credentials for:"></span>
|
|
|
|
<span id="hostname" class="hostname" data-i18n-text="hostname"></span>
|
|
|
|
<span id="credentialsError" class="credentials-error" data-i18n-text="Invalid user name/password"></span>
|
2017-10-18 01:47:09 -05:00
|
|
|
<form id="basicAuth" name="Basic Auth" action="Login">
|
|
|
|
<table class="form">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2018-06-19 09:56:04 -05:00
|
|
|
<td id="username-text" data-i18n-text="User name:"></td>
|
2017-10-18 01:47:09 -05:00
|
|
|
<td>
|
|
|
|
<input id="username" name="username" title="Username" required>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2018-06-19 09:56:04 -05:00
|
|
|
<td id="password-text" data-i18n-text="Password:"></td>
|
2017-10-18 01:47:09 -05:00
|
|
|
<td>
|
|
|
|
<input id="password" type="password" title="Password" required>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div class="footer">
|
|
|
|
<div class="button-container">
|
2018-06-19 09:56:04 -05:00
|
|
|
<button type="submit" id="login" data-i18n-text="Log In"></button>
|
2017-10-18 01:47:09 -05:00
|
|
|
</div>
|
|
|
|
<div class="button-container">
|
2018-06-19 09:56:04 -05:00
|
|
|
<button type="button" id="cancel" data-i18n-text="Cancel"></button>
|
2017-10-18 01:47:09 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|