This template allows the user to change their password.
password
Term | Data Type | Typical Output | Description |
---|---|---|---|
password.form_field.action | html | <input type=“hidden”… | The hidden action field |
password.form_field.old | html | <input type=“text”… | The old password field |
password.form_field.new | html | <input type=“text”… | The new password field |
password.form_field.retype | html | <input type=“text”… | Retype password field |
password.form_field.submit | html | <input type=“submit”… | The submit button |
Usage
<form name="password" action="change_pass.php" method="post">{{ password.form_field.action|raw }} <label>Old Password</label>{{ password.form_field.old|raw }}<br /> <label>New Password</label>{{ password.form_field.new|raw }}<br /> <label>Retype New Password</label> {{ password.form_field.retype|raw }} <p><br />*Your new password must be at least 6 characters long</p><hr /> {{ password.form_field.submit|raw }} </form>
Comments
0 comments
Please sign in to leave a comment.