Burgernotes/templates/login.html

28 lines
1.1 KiB
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!DOCTYPE html>
<html>
<head>
2024-02-26 17:25:59 +00:00
<title>Login - Burgernotes</title>
2023-07-21 20:52:06 +01:00
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
2024-02-27 17:04:31 +00:00
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
<script src="../static/js/hash-wasm.js"></script>
2023-07-21 20:52:06 +01:00
</head>
<body>
<div class="inoutdiv">
2023-11-03 20:24:40 +00:00
<h2 class="w300">Login</h2>
2023-07-21 20:52:06 +01:00
<p id="statusBox"></p>
2023-11-03 20:24:40 +00:00
<span id="inputNameBox" style="margin-right: 10px;color: var(--text-color);"></span><input id="usernameBox" class="hidden" type="text" placeholder="Enter your username">
2023-10-13 19:00:34 +01:00
<input id="passwordBox" class="hidden" type="password" placeholder="Enter your password">
2023-11-03 20:24:40 +00:00
<button id="signupButton">Next</button>
<button id="backButton" class="hidden">Back</button><br><br>
2024-02-27 17:04:31 +00:00
<p>Don't have an account? If so, <a href="../signup/index.html">Create one here!</a></p>
2024-02-27 19:35:42 +00:00
<a href="../privacy/index.html">Privacy &amp; Terms</a>
2023-07-21 20:52:06 +01:00
</div>
2023-10-13 19:00:34 +01:00
2024-02-27 17:04:31 +00:00
<script type="text/javascript" src="../static/js/login.js"></script>
2023-11-03 20:24:40 +00:00
</body>