2024-06-15 13:29:25 +10:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>HNS Login</title>
|
|
|
|
<link rel="icon" href="favicon.png" type="image/png">
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
/* Dark theme*/
|
|
|
|
background-color: #222;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 16px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.button {
|
|
|
|
display: block;
|
|
|
|
width: 200px;
|
|
|
|
margin: 20px auto;
|
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 16px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.loginbutton {
|
|
|
|
/* Put in the centre of the screen */
|
|
|
|
|
|
|
|
margin-left: 50%;
|
|
|
|
margin-top: 20px;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-option {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 16px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.centre {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 16px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 25px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1>HNS Login</h1>
|
|
|
|
|
2024-06-15 13:40:46 +10:00
|
|
|
<h2>{{error | safe}}</h2>
|
|
|
|
<p>{{message|safe}}</p>
|
|
|
|
|
|
|
|
<div style="text-align: center;">
|
|
|
|
{{custom|safe}}
|
|
|
|
</div>
|
|
|
|
|
2024-06-15 13:29:25 +10:00
|
|
|
<a href="/" class="button">Return to Home</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div style="position: fixed; bottom: 0; width: 100%; text-align: center; background-color: #333; padding: 10px;">
|
|
|
|
Powered by <a href="https://auth.varo.domains/implement" target="_blank">Varo Auth</a>, <a href="https://hns.id/"
|
|
|
|
target="_blank">HNS.ID</a> and <a href="https://nathan.woodburn.au" target="_blank">Nathan.Woodburn/</a>
|
|
|
|
</div>
|
|
|
|
<div style="height: 5em;"></div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|