##// END OF EJS Templates
db: move Session.remove to outer wsgi layer and also add it...
db: move Session.remove to outer wsgi layer and also add it to hooks daemon to avoid leaving connections open in the db pool fixes #4173, refs #4166

File last commit:

r665:a92da8f2 default
r669:d3c76065 stable
Show More
my_account_password.html
41 lines | 1.3 KiB | text/html | HtmlLexer
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Change Your Account Password')}</h3>
</div>
${h.secure_form(url('my_account_password'), method='post')}
<div class="panel-body">
<div class="fields">
<div class="field">
<div class="label">
<label for="current_password">${_('Current Password')}:</label>
</div>
<div class="input">
${h.password('current_password',class_='medium',autocomplete="off")}
</div>
</div>
<div class="field">
<div class="label">
<label for="new_password">${_('New Password')}:</label>
</div>
<div class="input">
${h.password('new_password',class_='medium', autocomplete="off")}
</div>
</div>
<div class="field">
<div class="label">
<label for="password_confirmation">${_('Confirm New Password')}:</label>
</div>
<div class="input">
${h.password('new_password_confirmation',class_='medium', autocomplete="off")}
</div>
</div>
<div class="buttons">
${h.submit('save',_('Save'),class_="btn")}
${h.reset('reset',_('Reset'),class_="btn")}
</div>
</div>
</div>
${h.end_form()}
</div>