<!DOCTYPE html> <html> <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> </head> <body> <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"> <input id="passwordBox" type="password" placeholder="Password"><br> <button id="signupButton">Signup</button><br><br> <p>Please note that it's impossible to reset your password, do not forget it!</p> <p>By signing up, you agree to our <a href="../privacy/index.html">Privacy & Terms</a>.</p> <br><br> <p>Already have an account? If so, <a href="../login/index.html">Login</a> instead!</p><br> </div> <style> body { background-color: #d9d9d9; background-image: url("/static/svg/grid.svg"); background-repeat: repeat; background-size: 312px; } .inoutdiv { border-radius: 8px; } </style> <script type="text/javascript" src="../static/js/signup.js"></script> </body>