miniflux-v2/template/html/create_user.html

48 lines
1.9 KiB
HTML
Raw Normal View History

{{ define "title"}}{{ t "page.new_user.title" }}{{ end }}
2017-11-20 06:10:04 +01:00
{{ define "content"}}
<section class="page-header">
<h1>{{ t "page.new_user.title" }}</h1>
2017-11-20 06:10:04 +01:00
<ul>
<li>
<a href="{{ route "settings" }}">{{ t "menu.settings" }}</a>
2017-11-20 06:10:04 +01:00
</li>
2017-11-22 04:37:47 +01:00
<li>
<a href="{{ route "integrations" }}">{{ t "menu.integrations" }}</a>
2017-11-22 04:37:47 +01:00
</li>
2017-11-20 06:10:04 +01:00
<li>
<a href="{{ route "sessions" }}">{{ t "menu.sessions" }}</a>
2017-11-20 06:10:04 +01:00
</li>
<li>
<a href="{{ route "users" }}">{{ t "menu.users" }}</a>
2017-11-20 06:10:04 +01:00
</li>
2018-02-01 07:03:21 +01:00
<li>
<a href="{{ route "about" }}">{{ t "menu.about" }}</a>
2018-02-01 07:03:21 +01:00
</li>
2017-11-20 06:10:04 +01:00
</ul>
</section>
<form action="{{ route "saveUser" }}" method="post" autocomplete="off">
<input type="hidden" name="csrf" value="{{ .csrf }}">
{{ if .errorMessage }}
<div class="alert alert-error">{{ t .errorMessage }}</div>
{{ end }}
<label for="form-username">{{ t "form.user.label.username" }}</label>
<input type="text" name="username" id="form-username" value="{{ .form.Username }}" autocomplete="new-password" required autofocus>
2017-11-20 06:10:04 +01:00
<label for="form-password">{{ t "form.user.label.password" }}</label>
<input type="password" name="password" id="form-password" value="{{ .form.Password }}" autocomplete="new-password" required>
2017-11-20 06:10:04 +01:00
<label for="form-confirmation">{{ t "form.user.label.confirmation" }}</label>
2017-11-20 06:10:04 +01:00
<input type="password" name="confirmation" id="form-confirmation" value="{{ .form.Confirmation }}" required>
<label><input type="checkbox" name="is_admin" value="1" {{ if .form.IsAdmin }}checked{{ end }}> {{ t "form.user.label.admin" }}</label>
2017-11-20 06:10:04 +01:00
<div class="buttons">
<button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.save" }}</button> {{ t "action.or" }} <a href="{{ route "users" }}">{{ t "action.cancel" }}</a>
2017-11-20 06:10:04 +01:00
</div>
</form>
{{ end }}