curious-greg/templates/landing_page.html

23 lines
685 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Curious Greg</title>
{% include 'imports.html' %}
</head>
<body>
<h1>Curious Greg</h1>
<h2>Connect your Curious Cat and Mastodon accounts for automated crossposting.</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>
<br /><br />
<a class='button' href='/login'>Log In</a>
{% include 'footer.html' %}
</body>
</html>