aboutsummaryrefslogtreecommitdiff
path: root/templates/signin.tmpl
blob: 2c97de271e8b48b673fc0bf19bd6003bf601ffd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{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}}