Changes to web gui and fixes

This commit is contained in:
2020-07-03 18:37:34 +02:00
parent 609d821501
commit 3deb367e89
9 changed files with 94 additions and 25 deletions

View File

@@ -0,0 +1,17 @@
{# -*- coding: utf-8 -*- #}
{% extends 'baseadmin.tmpl' %}
{% block content %}
<h2>Login</h2>
<form action="/firsttime" method="POST">
<div class="table-responsive">
<table class="table table-striped table-sm">
<tr>
<td>Please put password for program. Do not forget it!<input type="password" name="password" id="password" /></td>
</tr>
<tr>
<td><button type="submit">Set password</button></td>
</tr>
</table>
</div>
</form>
{% endblock %}