mirror of
https://github.com/bodyrep/bodyrep-sandpit.git
synced 2026-01-27 07:11:37 +00:00
26 lines
714 B
Twig
26 lines
714 B
Twig
{% block content %}
|
|
|
|
<h1>Update Profile</h1>
|
|
|
|
|
|
<form action="{{ path('_member_profile_save') }}" method="post" id="profile">
|
|
<div>
|
|
{{ form_errors(form) }}
|
|
</div>
|
|
<div>
|
|
<label for="fullname">Name</label>
|
|
{{ form_row(form.fullname) }}
|
|
</div>
|
|
<div> </div>
|
|
<div>
|
|
<label for="newpass1">New Password:</label><br />
|
|
<input type="password" id="newpass1" name="_newpass1" /> <br />
|
|
<input type="password" id="newpass2" name="_newpass2" />
|
|
</div>
|
|
<div> </div>
|
|
|
|
{{ form_rest(form) }}
|
|
<input type="submit" class="btn btn-primary btn-small" value="Save" />
|
|
</form>
|
|
{% endblock %}
|