Commit 38d857c9275ad586d3a5b0d548f6f90b4e344f26
1 parent
c29e4dbb
Template for forced password change.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5205 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
18 additions
and
0 deletions
templates/ktcore/authentication/force_change_password.smarty
0 → 100644
| 1 | +<h2>{i18n}Change your password{/i18n}</h2> | |
| 2 | + | |
| 3 | +<form action="{$smarty.server.PHP_SELF}" method="POST"> | |
| 4 | + <input type="hidden" name="action" value="providerVerify" /> | |
| 5 | + <input type="hidden" name="subaction" value="updatePassword" /> | |
| 6 | + <fieldset> | |
| 7 | + <legend>{i18n}Change your password{/i18n}</legend> | |
| 8 | + <p class="descriptiveText">{i18n}You are required to change your password as it has expired.{/i18n}</p> | |
| 9 | + | |
| 10 | + {foreach item=oWidget from=$edit_fields} | |
| 11 | + {$oWidget->render()} | |
| 12 | + {/foreach} | |
| 13 | + | |
| 14 | + <div class="form_actions"> | |
| 15 | + <input type="submit" value="{i18n}change password{/i18n}" /> | |
| 16 | + </div> | |
| 17 | + </fieldset> | |
| 18 | +</form> | ... | ... |