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.

lost_password.twig 590B

9 years ago
1234567891011121314
  1. {% extends "layouts/default.twig" %}
  2. {% block content %}
  3. <h2>${ "Lost Password" | translate }</h2>
  4. <form action="{% url "lost_password" %}" method="post">
  5. <p class="lost_pass">${ "Please enter your username below and we will e-mail you a new password for your account." | translate }</p>
  6. <p>
  7. <label for="login">${ "Username" | translate }</label>
  8. <input type="text" name="login" value="" id="login" />
  9. </p>
  10. <p><button name="submit" type="submit" id="submit">${ "Submit" | translate }</button></p>
  11. </form>
  12. {% endblock %}