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.

31 lines
1.3KB

  1. {% extends "layouts/default.twig" %}
  2. {% block content %}
  3. <h2>${ "Controls" | translate }</h2>
  4. <form action="{% url "controls" %}" method="post">
  5. <p>
  6. <label for="full_name">${ "Full Name" | translate }</label>
  7. <input type="text" name="full_name" value="${ visitor.full_name | escape }" id="full_name" tabindex="1" />
  8. </p>
  9. <p>
  10. <label for="email">${ "E-Mail" | translate }</label>
  11. <input type="text" name="email" value="${ visitor.email | escape }" id="email" tabindex="1" />
  12. </p>
  13. <p>
  14. <label for="website">${ "Website" | translate }</label>
  15. <input type="text" name="website" value="${ visitor.website | escape }" id="website" tabindex="1" />
  16. </p>
  17. <p>
  18. <label for="new_password1">${ "New Password?" | translate }</label>
  19. <input type="password" name="new_password1" value="" id="new_password1" />
  20. </p>
  21. <p>
  22. <label for="new_password2">${ "Confirm" | translate }</label>
  23. <input type="password" name="new_password2" value="" id="new_password2" />
  24. </p>
  25. ${ trigger.call("user_controls") }
  26. <p><button name="submit" type="submit" id="submit">${ "Update" | translate }</button></p>
  27. </form>
  28. {% endblock %}