Burgernotes/templates/signup.html

29 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>Signup - 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">Signup</h2>
2024-02-26 17:25:59 +00:00
<p>Signup for a Burgernotes account</p>
2023-07-21 20:52:06 +01:00
<p id="statusBox"></p>
2023-08-03 17:41:58 +01:00
<input id="usernameBox" type="text" placeholder="Username">
<input id="passwordBox" type="password" placeholder="Password">
2023-11-03 20:24:40 +00:00
<button id="signupButton">Signup</button><br><br>
<p>Please note that it's impossible to reset your password, do not forget it!</p>
2024-02-27 17:04:31 +00:00
<p>Already have an account? If so, <a href="../login/index.html">Login</a> instead!</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>
2024-02-27 17:04:31 +00:00
<script type="text/javascript" src="../static/js/signup.js"></script>
2023-11-03 20:24:40 +00:00
</body>