Burgernotes/templates/signup.html

27 lines
1011 B
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!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>
2023-08-03 17:41:58 +01:00
<input id="usernameBox" type="text" placeholder="Username">
<input id="passwordBox" type="password" placeholder="Password">
2023-07-21 20:52:06 +01:00
<button id="signupButton">sign up</button><br><br>
2023-08-03 17:41:58 +01:00
<p>please note that it's impossible to reset your password, do not forget it!</p>
2023-07-21 20:52:06 +01:00
<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>