burgernotes-client-web/signup/index.html

31 lines
1.7 KiB
HTML
Raw Normal View History

2024-03-12 18:34:05 +00:00
<!DOCTYPE html>
<html lang="en">
2024-03-12 18:34:05 +00:00
<head>
2024-06-25 21:03:50 +01:00
<title>Create account - Burgernotes</title>
2024-03-12 18:34:05 +00: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">
<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-03-12 18:34:05 +00:00
</head>
<body>
<img src="/static/img/background.jpg" class="background" alt="">
2024-03-12 18:34:05 +00:00
<div class="inoutdiv">
2024-06-21 16:49:44 +01:00
<h2>Create a Burgernotes Account</h2>
<p>Get started by picking a username and password</p>
<p style="color: #b3261e; font-size: 14px; margin-bottom: 2px; margin-top: 1px;" id="statusBox"></p>
<span id="inputNameBox" style="margin-right: 10px;color: var(--text-color);">Username:</span>
2024-03-12 18:34:05 +00:00
<input id="usernameBox" type="text" placeholder="Username">
2024-06-21 16:49:44 +01:00
<span id="inputNameBox" style="margin-right: 13px;color: var(--text-color);">Password: </span>
2024-03-12 18:34:05 +00:00
<input id="passwordBox" type="password" placeholder="Password"><br>
2024-06-21 16:49:44 +01:00
<button id="signupButton">Create account</button><button id="opButton" class="nonimportant">Already have an account</button><br><br>
<div style="display: flex;"><p class="hidden" id="homeserver">Your homeserver is loading... </p><div style="display: flex;flex-direction: column;justify-content: center;"><a class="hidden" href="/homeserver">Change</a></div></div>
2024-06-25 21:10:42 +01:00
<a class="iconbutton" title="Change homeserver" href="/homeserver/"><img src="/static/svg/server.svg"></a>
<a href="/privacy/">Privacy &amp; Terms</a>
2024-03-12 18:34:05 +00:00
</div>
<script type="text/javascript" src="/static/js/signup.js"></script>
2024-03-12 18:34:05 +00:00
</body>