bloat/templates/signin.tmpl

24 lines
661 B
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
2020-02-18 22:15:37 +00:00
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
2020-03-04 16:24:16 +00:00
<div class="page-title"> Bloat </div>
<div class="signin-desc">
2020-10-19 10:08:35 +00:00
A web client for <a href="https://pleroma.social" target="_blank">Mastadon Network</a>.
2020-03-04 16:24:16 +00:00
</div>
<form class="signin-form" action="/signin" method="post">
2020-03-04 16:24:16 +00:00
Enter the domain name of your instance to continue
<br/>
<input type="text" name="instance" placeholder="example.com" required>
<br/>
<button type="submit"> Signin </button>
2019-12-13 18:08:26 +00:00
</form>
2020-03-04 16:24:16 +00:00
<p>
See
<a href="https://git.freesoftwareextremist.com/bloat" target="_blank">git.freesoftwareextremist.com/bloat</a>
for more details.
</P>
2019-12-13 18:08:26 +00:00
{{template "footer.tmpl"}}
2020-01-14 16:57:16 +00:00
{{end}}