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

27 lines
678 B
Plaintext

{% extends "base" %}
{% block content %}
<%= htmlWebpackPlugin.tags.bodyTags %>
<div>
<h1>Tenebrous: Login</h1>
<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>
</form>
<div>
<a href="/register">Register</a>
</div>
</div>
{% endblock content %}