summaryrefslogtreecommitdiff
path: root/views/http/login.twig
blob: 723d5d26cea24312357d66f5593d2c65293d0344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'root.twig' %}

{% block body %}
<div class="wrap">
  <form action="/login" method="post">
    <label>
      E-Mail:
      <input type="text" name="email" placeholder="or Username">
    </label>
    <label>
      Password:
      <input type="password" name="password">
    </label>
    <button>Login</button>
  </form>
</div>
{% endblock %}