summaryrefslogtreecommitdiffstats
path: root/templates/user/auth/signin_openid.tmpl
blob: 20c7bdc924acfb07c9a7cfdeac98521474ec4ae7 (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
44
45
46
47
48
49
50
51
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content user signin openid">
	<div class="ui middle very relaxed page grid">
		<div class="column tw-flex tw-flex-col tw-gap-4 tw-max-w-2xl tw-m-auto">
			<a href="{{AppSubUrl}}/user/login" class="tw-mx-auto">
				<img width="100" height="100" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}">
			</a>

			<div class="ui container fluid">
				{{template "base/alert" .}}
				<h4 class="ui top attached header center">
					{{svg "fontawesome-openid"}}
					OpenID
				</h4>
				<div class="ui attached segment">
					<form class="ui form tw-m-auto" action="{{.Link}}" method="post">
						{{.CsrfTokenHtml}}
						<div class="inline field">
							{{ctx.Locale.Tr "auth.openid_signin_desc"}}
						</div>
						<div class="required field {{if .Err_OpenID}}error{{end}}">
							<label for="openid">
							{{svg "fontawesome-openid"}}
							OpenID URI
							</label>
							<input id="openid" name="openid" value="{{.openid}}" autofocus required>
						</div>
						<div class="inline field">
							<div class="ui checkbox">
								<label>{{ctx.Locale.Tr "auth.remember_me"}}</label>
								<input name="remember" type="checkbox">
							</div>
						</div>
						<div class="inline field">
							<button class="ui primary button tw-w-full">{{ctx.Locale.Tr "sign_in"}}</button>
						</div>
					</form>
				</div>
			</div>

			<div class="ui container fluid">
				{{template "user/auth/webauthn_error" .}}

				<div class="ui attached segment header top tw-flex tw-flex-col tw-items-center">
					<a href="{{AppSubUrl}}/user/login">{{ctx.Locale.Tr "auth.back_to_sign_in"}}</a>
				</div>
			</div>
		</div>
	</div>
</div>
{{template "base/footer" .}}