No Description

admin.html 445B

123456789101112131415
  1. {% extends 'base.html' %}
  2. {% block header %}
  3. <h1>{% block title %}UPR Queue{% endblock %}</h1>
  4. {% endblock %}
  5. {% block content %}
  6. <form method="post">
  7. <label for="eName">Name</label>
  8. <input name="eName" id="name" required></input><br>
  9. <label for="eName">Oficina</label>
  10. <input name="oficina" id="oficina" required></input><br>
  11. <input type="submit" value="Get ticket">
  12. </form>
  13. {% endblock %}