curious-greg/templates/create_password.html

23 lines
773 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Curious Greg - Create Password</title>
{% include 'imports.html' %}
</head>
<body>
<h1>Create password</h1>
<h2>Please enter a password for your new Curious Greg account.</h2>
<noscript>
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
</noscript>
<!-- <div id='logo-main'></div> -->
<form action='/internal/do_login' method='POST'>
<label for='pw'>Password</label><br />
<input type='password' name='pw' placeholder='••••••••' required /><br />
<label for='pw2'>Retype password</label><br />
<input type='password' placeholder='••••••••' name='pw2' required /><br />
<button>Create Account</button>
</form>
{% include 'footer.html' %}
</body>
</html>