23 lines
No EOL
701 B
HTML
23 lines
No EOL
701 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>
|
|
<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='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> |