signin.tmpl 661 B

1234567891011121314151617181920212223
  1. {{with .Data}}
  2. {{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
  3. <div class="page-title"> Bloat </div>
  4. <div class="signin-desc">
  5. A web client for <a href="https://pleroma.social" target="_blank">Mastadon Network</a>.
  6. </div>
  7. <form class="signin-form" action="/signin" method="post">
  8. Enter the domain name of your instance to continue
  9. <br/>
  10. <input type="text" name="instance" placeholder="example.com" required>
  11. <br/>
  12. <button type="submit"> Signin </button>
  13. </form>
  14. <p>
  15. See
  16. <a href="https://git.freesoftwareextremist.com/bloat" target="_blank">git.freesoftwareextremist.com/bloat</a>
  17. for more details.
  18. </P>
  19. {{template "footer.tmpl"}}
  20. {{end}}