diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-05-25 22:23:51 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-05-25 22:23:51 -0700 |
commit | 9ff3e59193a9e300860c58ae1e65a4c55b0d21b0 (patch) | |
tree | 51cb4f8038b5cf7c0776f75e287dc0d0131d38b1 /views/index.php | |
parent | a3701e1e4f248ddb2e9fda275e55febecadc32cc (diff) |
removes top nav bar from design. new logo. adds a mechanism to add the post interface to your home screen.
Diffstat (limited to 'views/index.php')
-rw-r--r-- | views/index.php | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/views/index.php b/views/index.php index 9232f8e..f653de7 100644 --- a/views/index.php +++ b/views/index.php @@ -1,9 +1,19 @@ +<div class="narrow"> + <div class="jumbotron"> - <h2>Quill</h2> - <p>How does it work?</p> - <ol> - <li>Sign in with your domain</li> - <li>Post a note!</li> - </ol> - <p><a href="/signin" class="btn btn-primary btn-lg" role="button">Get Started »</a></p> + <h1><img src="/images/quill-logo-144.png" height="72" style="margin-bottom: 13px;">Quill</h1> + + <p class="tagline">Quill is a simple app for posting text notes to your website.</p> + + <p>To use Quill, sign in with your domain. Your website will need to support <a href="http://indiewebcamp.com/micropub">Micropub</a> for creating new posts.</p> + + <form action="/auth/start" method="get" class="form-inline"> + <input type="text" name="me" placeholder="http://me.com" value="" class="form-control"> + <input type="submit" value="Sign In" class="btn btn-primary"> + <input type="hidden" name="client_id" value="https://quill.p3k.io"> + <input type="hidden" name="redirect_uri" value="https://quill.p3k.io/auth/callback"> + </form> + </div> + +</div>
\ No newline at end of file |