burgernotes-app/website/signup/index.html

31 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2024-02-26 19:20:46 +00:00
<!DOCTYPE html>
<html lang="en">
2024-02-26 19:20:46 +00:00
<head>
<title>Signup - Burgernotes</title>
<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">
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
<script src="/static/js/hash-wasm.js"></script>
<link rel="icon" href="/static/svg/favicon.svg">
2024-02-26 19:20:46 +00:00
</head>
<body>
2024-03-15 13:09:55 +00:00
<p class="credit">Image by perga (@pergagreen on discord)</p>
<img src="/static/img/background.jpg" class="background" alt="">
2024-02-26 19:20:46 +00:00
<div class="inoutdiv">
<h2 class="w300">Signup</h2>
<p>Signup for a Burgernotes account</p>
<p id="statusBox"></p>
<input id="usernameBox" type="text" placeholder="Username">
2024-02-28 13:15:54 +00:00
<input id="passwordBox" type="password" placeholder="Password"><br>
2024-02-26 19:20:46 +00:00
<button id="signupButton">Signup</button><br><br>
<p>Already have an account? If so, <a href="/login/">Login</a> instead!</p>
2024-02-26 19:20:46 +00:00
<p>Please note that it's impossible to reset your password, do not forget it!</p>
2024-03-15 13:09:55 +00:00
<div style="display: flex;"><p id="homeserver">Your homeserver is loading... </p><div style="display: flex;flex-direction: column;justify-content: center;"><a href="/homeserver">Change</a></div></div>
<a href="/privacy/">Privacy &amp; Terms</a>
2024-02-26 19:20:46 +00:00
</div>
<script type="text/javascript" src="/static/js/signup.js"></script>
2024-02-26 19:20:46 +00:00
</body>