bloat/templates/signin.tmpl
r 6ddec8db3e Update page titles
- Use consistent letter casing
- Append instance domain to the title
2024-02-12 06:44:32 +00:00

23 lines
740 B
Cheetah

{{with .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<h1>bloat</h1>
<p>A web client for <a href="https://pleroma.social" target="_blank">Mastadon Network</a>.</p>
<form action="/signin" method="post">
<div class="form-field-s">
<label for="instance">Enter the domain name of your instance to continue</label>
</div>
<div class="form-field-s">
<input id="instance" type="text" class="input-w" name="instance" placeholder="example.com" required>
</div>
<div class="form-field-s"><button type="submit">Signin</button></div>
</form>
<p>
See
<a href="https://git.freesoftwareextremist.com/bloat" target="_blank">git.freesoftwareextremist.com/bloat</a>
for more details.
</P>
{{template "footer.tmpl"}}
{{end}}