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>
|
2024-03-12 17:11:34 +00:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #d9d9d9;
|
|
|
|
background-image: url("/static/svg/grid.svg");
|
|
|
|
background-repeat: repeat;
|
|
|
|
background-size: 312px;
|
|
|
|
}
|
|
|
|
.inoutdiv {
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
</style>
|
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">
|
2024-02-27 22:19:12 +00:00
|
|
|
<input id="passwordBox" type="password" placeholder="Password"><br>
|
2023-11-03 20:24:40 +00:00
|
|
|
<button id="signupButton">Signup</button><br><br>
|
2024-03-12 17:11:34 +00:00
|
|
|
<p>Already have an account? If so, <a href="../login/index.html">Login</a> instead!</p>
|
2023-11-03 20:24:40 +00:00
|
|
|
<p>Please note that it's impossible to reset your password, do not forget it!</p>
|
2024-03-12 17:34:18 +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>
|
2024-03-12 17:11:34 +00:00
|
|
|
<a href="../privacy/index.html">Privacy & 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>
|