2024-03-12 18:34:05 +00:00
|
|
|
<!DOCTYPE html>
|
2024-04-28 23:48:03 +01:00
|
|
|
<html lang="en">
|
2024-03-12 18:34:05 +00:00
|
|
|
|
|
|
|
<head>
|
2024-06-21 16:49:44 +01:00
|
|
|
<title>Sign in - 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">
|
2024-04-28 23:48:03 +01:00
|
|
|
<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>
|
2024-06-09 21:22:39 +01:00
|
|
|
<p class="credit"></p>
|
2024-04-28 23:48:03 +01:00
|
|
|
<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>Sign in</h2>
|
2024-03-12 18:34:05 +00:00
|
|
|
<p id="statusBox"></p>
|
|
|
|
<span id="inputNameBox" style="margin-right: 10px;color: var(--text-color);"></span>
|
|
|
|
<input id="usernameBox" class="hidden" type="text" placeholder="Enter your username">
|
|
|
|
<input id="passwordBox" class="hidden" type="password" placeholder="Enter your password">
|
|
|
|
<button id="signupButton">Next</button>
|
2024-06-21 16:49:44 +01:00
|
|
|
<button id="backButton" class="hidden nonimportant">Back</button>
|
|
|
|
<button id="opButton" class="nonimportant">Create account</button>
|
|
|
|
<br><br><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-04-28 23:48:03 +01:00
|
|
|
<a href="/privacy/">Privacy & Terms</a>
|
2024-03-12 18:34:05 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="../static/js/login.js"></script>
|
|
|
|
</body>
|