Burgernotes/templates/login.html

26 lines
933 B
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!DOCTYPE html>
<html>
<head>
<title>log in - 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">
2023-08-16 14:42:08 +01:00
<h2 class="w300">log in</h2>
2023-07-21 20:52:06 +01:00
<p>log in to your burgernotes account!</p>
<p id="statusBox"></p>
<input id="usernameBox" type="text" placeholder="Username">
<input id="passwordBox" type="password" placeholder="Password">
<button id="signupButton">log in</button><br><br>
<p>don't have an account? if so, <a href="/signup">create one here!</a></p>
</div>
<script type="text/javascript" src="/static/js/login.js"></script>
</body>