You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.1 KiB

  1. <div class="narrow">
  2. <div class="jumbotron h-x-app">
  3. <h1><img src="/images/quill-logo-144.png" height="72" style="margin-bottom: 13px;" class="u-logo p-name" alt="Quill">Quill</h1>
  4. <p class="tagline">Quill is a simple app for posting text notes to your website.</p>
  5. <? if(session('me')): ?>
  6. <p>You're already signed in!<p>
  7. <p><a href="/dashboard" class="btn btn-primary">Continue</a></p>
  8. <? else: ?>
  9. <p>To use Quill, sign in with your domain. Your website will need to support <a href="https://indieweb.org/micropub">Micropub</a> for creating new posts.</p>
  10. <form action="/auth/start" method="get" class="form-inline">
  11. <input type="url" name="me" placeholder="https://example.com" value="" class="form-control" onchange="auto_prefix_url_field(this)" autofocus>
  12. <input type="submit" value="Sign In" class="btn btn-primary">
  13. <input type="hidden" name="client_id" value="<?= Config::$base_url ?>">
  14. <input type="hidden" name="redirect_uri" value="<?= Config::$base_url ?>auth/callback">
  15. </form>
  16. <? endif; ?>
  17. <a href="" class="u-url"></a>
  18. </div>
  19. </div>