Pslink/pslink/templates/login.html
Dietrich fc9b18141f Working user and link list, (big)restructure
This is now a workspace consisting of:
  * the pslink app (a wasm frontend for the admin interface)
  * the pslink binary
  * shared - modules for communication between the two above.
2021-08-12 15:48:02 +02:00

20 lines
599 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="center">
<form action="" method="POST">
<div>
<label for="username">{{ fluent(key="username", lang=language)
}}:</label>
<input type="text" name="username">
</div>
<div>
<label for="password">{{ fluent(key="password", lang=language)
}}:</label>
<input type="password" name="password">
</div>
<input type="submit" value='{{ fluent(key="login", lang=language) }}'>
</form>
<h2>&nbsp;</h2>
</div>
{% endblock %}