No Description

login.html 324B

1234567891011121314
  1. {% block body %}
  2. {% if session['esgallito'] %}
  3. You're logged in already!
  4. {% else %}
  5. <form action="/login" method="POST">
  6. <input type="username" name="username" placeholder="Username">
  7. <input type="password" name="password" placeholder="Password">
  8. <input type="submit" value="Log in">
  9. </form>
  10. {% endif %}
  11. {% endblock %}