summaryrefslogtreecommitdiffstats
path: root/templates/user/settings/security/webauthn.tmpl
blob: 346f61c2ad0854f0404648956128722b5a7978cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<h4 class="ui top attached header">{{ctx.Locale.Tr "settings.webauthn"}}</h4>
<div class="ui attached segment">
	<p>{{ctx.Locale.Tr "settings.webauthn_desc" "https://w3c.github.io/webauthn/#webauthn-authenticator"}}</p>
	<p>{{ctx.Locale.Tr "settings.webauthn_key_loss_warning"}} {{ctx.Locale.Tr "settings.webauthn_alternative_tip"}}</p>
	{{template "user/auth/webauthn_error" .}}
	<div class="flex-list">
		{{range .WebAuthnCredentials}}
			<div class="flex-item">
				<div class="flex-item-leading">
					{{svg "octicon-key" 32}}
				</div>
				<div class="flex-item-main">
					<div class="flex-item-title">{{.Name}}</div>
					<div class="flex-item-body">
						<p>{{ctx.Locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix)}}</p>
					</div>
				</div>
				<div class="flex-item-trailing">
					<button class="ui red tiny button delete-button" data-modal-id="delete-registration" data-url="{{$.Link}}/webauthn/delete" data-id="{{.ID}}">
					{{ctx.Locale.Tr "settings.delete_key"}}
					</button>
				</div>
			</div>
		{{end}}
	</div>
	<div class="ui form">
		<div class="required field">
			<label for="nickname">{{ctx.Locale.Tr "settings.webauthn_nickname"}}</label>
			<input id="nickname" name="nickname" type="text" required>
		</div>
		<button id="register-webauthn" class="ui primary button">{{svg "octicon-key"}} {{ctx.Locale.Tr "settings.webauthn_register_key"}}</button>
	</div>
	<div class="ui g-modal-confirm delete modal" id="delete-registration">
		<div class="header">
			{{svg "octicon-trash"}}
			{{ctx.Locale.Tr "settings.webauthn_delete_key"}}
		</div>
		<div class="content">
			<p>{{ctx.Locale.Tr "settings.webauthn_delete_key_desc"}}</p>
		</div>
		{{template "base/modal_actions_confirm" .}}
	</div>
</div>