Public archive for the Return to Ritherdon project. https://www.nicolaellisandritherdon.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
734 B

{% extends "layouts/default.html" %}
{% block title%}Log-in and start doing stuff.{%endblock%}
{% block content %}
<div class="be-main">
<div class="be-login-container">
<h2>Log-In</h2>
<form class="be-gui-form"
action="/login"
method="post">
<input type="hidden"
name="AUTHENTICITY-TOKEN"
value="{{token}}">
<label>Username</label>
<input required
type="text"
name="USERNAME">
<label>password</label>
<input required
type="password"
name="PASSWORD">
<button class="be-gui-button"
title="Click to login"
type="submit">
<img alt="Log-in"
src="/images/icons/login.png">
Login
</button>
</form>
</div>
</div>
{% endblock %}