25 lines
No EOL
969 B
HTML
25 lines
No EOL
969 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'>
|
|
<div id='form-avi' style='background-image:url("https://fedi.lynnesbian.space/system/accounts/avatars/000/000/002/original/7ebcb4b973eee926.gif?1541354017")'></div>
|
|
<span id='form-avi-label'>@lynnesbian@fedi.lynnesbian.space</span><br /><br />
|
|
<label for='pw'>Password</label><br />
|
|
<input type='password' name='pw' placeholder='••••••••' required /><br />
|
|
<button>Create Account</button>
|
|
</form>
|
|
<br /><br />
|
|
Your password will be hashed using bcrypt, ensuring that nobody can read it.
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html> |