1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/src/views/login.ejs

22 lines
839 B
Plaintext

<!DOCTYPE html>
<head>
<title>Login Portal</title>
<link rel="stylesheet" type="text/css" href="login.css">
</head>
<body>
<div class="login">
<h1>Login Portal</h1>
<div id="login-form">
<input type="text" name="username" id="username" placeholder="Username" required="required" />
<input type="password" name="password" id="password" placeholder="Password" required="required" />
<input type="text" name="token" id="token" placeholder="Verification token" required="required" />
<button type="button" id="login-button" class="btn btn-primary btn-block btn-large">Enter</button>
</div>
<div id="information" style="display: none;"></div>
</div>
</body>
<script src="jquery.min.js"></script>
<script src="js.cookie.min.js"></script>
<script src="login.js"></script>
</html>