tenebrous-sheets/src/frontend/templates/login.html.tera

27 lines
678 B
Plaintext
Raw Normal View History

2020-12-01 21:32:16 +00:00
{% extends "base" %}
{% block content %}
<%= htmlWebpackPlugin.tags.bodyTags %>
2020-12-01 21:32:16 +00:00
<div>
<h1>Tenebrous: Login</h1>
2020-12-01 21:32:16 +00:00
<p>Please login to continue.</p>
{% if flash %}
<p>Error: {{ flash }}</p>
{% endif %}
<form action="/login" method="post" accept-charset="utf-8">
<label for="username">username</label>
<input type="text" name="username" id="username" value="" />
<label for="password">password</label>
<input type="password" name="password" id="password" value="" />
<p><input type="submit" value="Login"></p>
2020-12-01 21:32:16 +00:00
</form>
<div>
<a href="/register">Register</a>
</div>
2020-12-01 21:32:16 +00:00
</div>
{% endblock content %}