Files
qrank/templates/login.html

13 lines
560 B
HTML

{{define "login"}}{{template "base" .}}{{end}}
{{define "content"}}
<div class="card">
<h2>Sign in with your email</h2>
<p class="small">No password needed. We'll send you a magic link (for now it prints in the server logs).</p>
<form method="POST" action="/login">
<label class="label">Email</label>
<input class="input" type="email" name="email" placeholder="you@example.com" required>
<div style="height:8px"></div>
<button class="btn btn-primary" type="submit">Send magic link</button>
</form>
</div>
{{end}}