feat(admin): update stylesheet
This commit is contained in:
16
server/ctrladmin/adminui/pages/change_password.tmpl
Normal file
16
server/ctrladmin/adminui/pages/change_password.tmpl
Normal file
@@ -0,0 +1,16 @@
|
||||
{{ component "layout" . }}
|
||||
{{ component "layout_user" . }}
|
||||
|
||||
{{ component "block" (props .
|
||||
"Icon" "user"
|
||||
"Name" (printf "changing %s's password" .SelectedUser.Name)
|
||||
) }}
|
||||
<form class="flex flex-col gap-2 items-end" action="{{ printf "/admin/change_password_do?user=%s" .SelectedUser.Name | path }}" method="post">
|
||||
<input type="password" id="password_one" name="password_one" placeholder="new password">
|
||||
<input type="password" id="password_two" name="password_two" placeholder="verify new password">
|
||||
<input type="submit" value="change">
|
||||
</form>
|
||||
{{ end }}
|
||||
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user