21 lines
635 B
HTML
21 lines
635 B
HTML
{{define "head"}}
|
|
<title>TOTP Setup - ari melody 💫</title>
|
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/x-icon">
|
|
<link rel="stylesheet" href="/admin/static/admin.css">
|
|
{{end}}
|
|
|
|
{{define "content"}}
|
|
<main>
|
|
{{if .Session.Error.Valid}}
|
|
<p id="error">{{html .Session.Error.String}}</p>
|
|
{{end}}
|
|
|
|
<form action="/admin/account/totp-setup" method="POST" id="totp-setup">
|
|
<label for="totp-name">TOTP Device Name:</label>
|
|
<input type="text" name="totp-name" value="" autocomplete="off" required autofocus>
|
|
|
|
<button type="submit" class="new">Create</button>
|
|
</form>
|
|
</main>
|
|
{{end}}
|