20 lines
No EOL
583 B
HTML
20 lines
No EOL
583 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</label><br />
|
|
<input name='acct' placeholder='@you@instan.ce' 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> |