Compare commits

...

2 Commits

Author SHA1 Message Date
70883db5ad Changed dockerignore stricture 2022-08-11 13:09:41 +01:00
7cefb487da Bugfix: reset password 2022-08-11 13:09:34 +01:00
3 changed files with 5 additions and 3 deletions

3
.gitignore vendored
View File

@ -150,3 +150,6 @@ database/data/
# Ignore Encryption Keyfile
.encryption.key
# Ignore Data Dir
**/data/*

View File

@ -2,7 +2,7 @@
{% block content %}
<div class="form-container">
<form name="form-update-password" class="form-display form-post" action="{{ url_for(_update_password, **request.view_args) }}" data-rel-success="{{ url_for('admin._login') }}">
<form name="form-update-password" class="form-display form-post" action="{{ url_for('admin._update_password', **request.view_args) }}" data-rel-success="{{ url_for('admin._login') }}">
{% include "admin/components/server-alerts.html" %}
<h2 class="form-heading">Update Password</h2>
{{ form.hidden_tag() }}

View File

@ -1 +0,0 @@
*