1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{define "title"}}Log in with Fediverse{{end}}
{{define "pageClass"}}narrow{{end}}
{{define "content"}}
<h1>Log in with Fediverse</h1>
<p class="meta">Logging in as <strong>{{.Handle}}</strong></p>
{{if .Msg}}<p class="msg">{{.Msg}}</p>{{end}}
<div class="step">
<p>Send a direct message to <code>{{.BotHandle}}</code> containing exactly:</p>
<div class="pin">{{.PIN}}</div>
</div>
<div class="step">
<p>Then click the button below to confirm:</p>
<form method="POST" action="/login">
<input type="hidden" name="session_id" value="{{.Token}}">
<button type="submit" style="margin-top:0.5rem">I’ve sent the PIN →</button>
</form>
</div>
{{end}}
{{template "base" .}}
|