<!DOCTYPE html>
<html lang="en">

<head>
    <title>Create account - 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">
</head>

<body>
    <img src="/static/img/background.jpg" class="background" alt="">
    <div class="inoutdiv">
        <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>
        <input id="usernameBox" type="text" placeholder="Username">
        <span id="inputNameBox" style="margin-right: 13px;color: var(--text-color);">Password: </span>
        <input id="passwordBox" type="password" placeholder="Password"><br>
        <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>
        <a class="iconbutton" title="Change homeserver" href="/homeserver/"><img src="/static/svg/server.svg"></a>
        <a href="/privacy/">Privacy &amp; Terms</a>
    </div>
    <script type="text/javascript" src="/static/js/signup.js"></script>
</body>