21 lines
No EOL
633 B
HTML
21 lines
No EOL
633 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 />
|
|
<button>Create Account</button>
|
|
</form>
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html> |