burgerauth/templates/login.html

34 lines
1.3 KiB
HTML
Raw Normal View History

2024-04-26 21:12:56 +01:00
<!DOCTYPE html>
<html lang="en">
2024-04-26 21:12:56 +01:00
<head>
<title>Login - {{ .identifier }}</title>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
2024-04-26 21:12:56 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="/static/svg/favicon.svg">
<link rel="stylesheet" type="text/css" href="/static/css/style.css"/>
<script src="/static/js/hash-wasm.js"></script>
2024-04-26 21:12:56 +01:00
</head>
<body>
<img src="/static/img/background.png" class="background" alt="">
2024-04-26 21:12:56 +01:00
<div class="inoutdiv">
<h2 class="w300">Login</h2>
<p id="statusBox"></p>
<div class="inputContainer" id="inputContainer">
<div class="vAlign"><span id="inputNameBox"></span></div>
<input id="usernameBox" class="hidden" type="text" placeholder="Enter your username">
<input id="passwordBox" class="hidden" type="password" placeholder="Enter your password">
</div>
<button id="nextButton">Next</button>
<button id="backButton" class="hidden unimportant">Back</button>
<button id="signupButton" class="unimportant" onclick="toSignup()">Signup</button>
2024-04-26 21:12:56 +01:00
<br>
<br>
<a href="{{ .privacy }}" id="privacyButton">Privacy &amp; Terms</a>
2024-04-26 21:12:56 +01:00
</div>
<script type="text/javascript" src="../static/js/login.js"></script>
</body>