23 lines
No EOL
836 B
HTML
23 lines
No EOL
836 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Curious Greg - Login</title>
|
|
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
|
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<h1>Log In</h1>
|
|
<h2>Log in to your existing account.</h2>
|
|
<noscript>
|
|
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
|
</noscript>
|
|
<!-- <div id='logo-main'></div> -->
|
|
<form onsubmit='cont(); return false'>
|
|
<label for='instance'>Instance URL</label><br />
|
|
<input name='instance' placeholder='mastodon.social' id='instance-input' /><br />
|
|
<button class='loading'>Sign Up</button>
|
|
</form>
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html> |