curious-greg/templates/landing_page.html

20 lines
558 B
HTML
Raw Permalink Normal View History

2018-11-02 07:46:49 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Curious Greg</title>
{% include 'imports.html' %}
2018-11-02 07:46:49 +00:00
</head>
<body>
<h1>Curious Greg</h1>
<h2>Connect your Curious Cat and Mastodon accounts for automated crossposting.</h2>
<!-- <div id='logo-main'></div> -->
2018-11-10 06:38:43 +00:00
<form action='/internal/auth_a' method='GET'>
2018-11-02 07:46:49 +00:00
<label for='instance'>Instance URL</label><br />
<input name='instance' placeholder='mastodon.social' id='instance-input' /><br />
2018-11-06 23:13:21 +00:00
<button>Sign Up</button>
2018-11-02 07:46:49 +00:00
</form>
2018-11-06 10:30:48 +00:00
<br /><br />
<a class='button' href='/login'>Log In</a>
2018-11-06 11:08:06 +00:00
{% include 'footer.html' %}
2018-11-02 07:46:49 +00:00
</body>
</html>