26 lines
982 B
HTML
26 lines
982 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>sign up - 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="https://cdn.jsdelivr.net/npm/hash-wasm@4"></script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="inoutdiv">
|
||
|
<h2>sign up</h2>
|
||
|
<p>sign up for a burgernotes account</p>
|
||
|
<p id="statusBox"></p>
|
||
|
<input id="usernameBox" type="text" placeholder="Username (alphanumeric and max 20 characters)">
|
||
|
<input id="passwordBox" type="password" placeholder="Password (minimum 14 characters)">
|
||
|
<button id="signupButton">sign up</button><br><br>
|
||
|
<p>already have an account? if so, <a href="/login">log in</a> instead</p>
|
||
|
</div>
|
||
|
|
||
|
<script type="text/javascript" src="/static/js/signup.js"></script>
|
||
|
</body>
|