KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

login.twig 656B

9 years ago
1234567891011121314151617
  1. {% extends "layouts/default.twig" %}
  2. {% block content %}
  3. <h2>${ "Log In" | translate }</h2>
  4. <form action="{% url "login" %}" method="post">
  5. <p>
  6. <label for="login">${ "Username" | translate }</label>
  7. <input type="text" name="login" value="${ POST.login | escape }" id="login" tabindex="1" />
  8. </p>
  9. <p>
  10. <label for="password">${ "Password" | translate }</label>
  11. <input type="password" name="password" value="" id="password" tabindex="1" />
  12. </p>
  13. <p><button name="submit" type="submit" id="submit">${ "Log In" | translate }</button></p>
  14. </form>
  15. {% endblock %}