change_user_details.html 734 B

12345678910111213141516171819202122
  1. {% extends "user/settings_layout.html" %}
  2. {% from "macros.html" import horizontal_field %}
  3. {% block settings_content %}
  4. <form class="form-horizontal" role="form" method="POST">
  5. <legend class="">Change User Details</legend>
  6. {{ form.hidden_tag() }}
  7. {{ horizontal_field(form.birthday)}}
  8. {{ horizontal_field(form.gender)}}
  9. {{ horizontal_field(form.location)}}
  10. {{ horizontal_field(form.website)}}
  11. {{ horizontal_field(form.avatar)}}
  12. {{ horizontal_field(form.signature)}}
  13. {{ horizontal_field(form.notes)}}
  14. <div class="form-group">
  15. <div class="col-lg-offset-3 col-lg-9">
  16. <button type="submit" class="btn btn-success">Save</button>
  17. </div>
  18. </div>
  19. </form>
  20. {% endblock %}