curious-greg/templates/create_password.html

22 lines
721 B
HTML
Raw Normal View History

2018-11-06 11:22:10 +00:00
<!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>
<!-- <div id='logo-main'></div> -->
2018-11-06 23:10:50 +00:00
<form action='/internal/create_account' method='POST'>
<div id='form-avi' style={{ bg }}></div>
2018-11-10 06:38:43 +00:00
<span id='form-avi-label'>{{ session['acct'] }}</span><br /><br />
2018-11-06 11:22:10 +00:00
<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.
2018-11-06 11:22:10 +00:00
{% include 'footer.html' %}
</body>
</html>