aboutsummaryrefslogtreecommitdiff
path: root/ustayml/templates/auth/login.html
blob: 9560ba55d7299a52874ca126dc566207187fd489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'base.html' %}

{% block header %}
  <h1>{% block title %}Ingresar{% endblock %}</h1>
{% endblock %}

{% block content %}
  <form class="simple-form" method="post">
    <label for="username">Usuario</label>
    <input name="username" id="username" required>
    <label for="password">Contraseña</label>
    <input type="password" name="password" id="password" required>
    <input type="submit" value="Ingresar">
  </form>
{% endblock %}