2017-03-17 15:16:08 +01:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user signup">
|
2017-03-17 15:16:08 +01:00
|
|
|
{{template "user/auth/signup_openid_navbar" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "auth.openid_register_title"}}
|
2017-03-17 15:16:08 +01:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2024-03-06 15:20:26 +01:00
|
|
|
<p class="tw-max-w-2xl tw-mx-auto">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "auth.openid_register_desc"}}
|
2017-03-17 15:16:08 +01:00
|
|
|
</p>
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="required field {{if .Err_UserName}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="user_name">{{ctx.Locale.Tr "username"}}</label>
|
2020-07-15 15:48:50 +02:00
|
|
|
<input id="user_name" type="text" name="user_name" value="{{.user_name}}" autofocus required>
|
2017-03-17 15:16:08 +01:00
|
|
|
</div>
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="required field {{if .Err_Email}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="email">{{ctx.Locale.Tr "email"}}</label>
|
2017-03-17 15:16:08 +01:00
|
|
|
<input id="email" name="email" type="email" value="{{.email}}" required>
|
|
|
|
</div>
|
2022-11-22 22:13:18 +01:00
|
|
|
|
|
|
|
{{template "user/auth/captcha" .}}
|
|
|
|
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="field">
|
2017-03-20 02:50:24 +01:00
|
|
|
<label for="openid">OpenID URI</label>
|
2022-08-31 17:58:54 +02:00
|
|
|
<input id="openid" value="{{.OpenID}}" readonly>
|
2017-03-17 15:16:08 +01:00
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "auth.create_new_account"}}</button>
|
2017-03-17 15:16:08 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|