Няма описание

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="name">Name</label>
  8. <input name="name" id="name" value="{{ request.form['cName'] }}" required>
  9. <label for="email">email</label>
  10. <input name="email" id="email" value="{{ request.form['cEmail'] }}" required>
  11. <input type="submit" value="Get ticket">
  12. </form>
  13. {% endblock %}