curious-greg/templates/login.html

20 lines
621 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Curious Greg - Login</title>
{% include 'imports.html' %}
</head>
<body>
<h1>Log in</h1>
<h2>Log in to your Curious Greg account.</h2>
<!-- <div id='logo-main'></div> -->
<form action='/internal/do_login' method='POST'>
<label for='acct'>Mastodon @account@instan.ce</label><br />
<input name='acct' placeholder='@account@instan.ce' pattern="@[^@]+@[^@]+" required /><br />
<label for='pw'>Password</label><br />
<input type='password' placeholder='••••••••' name='pw' required /><br />
<button>Log In</button>
</form>
{% include 'footer.html' %}
</body>
</html>