| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {*
- **********************************************************
- * Developed by: Team Theme Metro
- * Website: http://www.thememetro.com
- **********************************************************
- *}
- {if $successful}
- {include file="$template/includes/alert.tpl" type="success" msg=$LANG.changessavedsuccessfully textcenter=true}
- {/if}
- {if $errormessage}
- {include file="$template/includes/alert.tpl" type="error" errorshtml=$errormessage}
- {/if}
- <div class="row">
- <div class="col-sm-7">
- <form class="using-password-strength" method="post" action="clientarea.php?action=changepw" role="form">
- <input type="hidden" name="submit" value="true" />
- <div class="TM-card">
- <div class="form-group">
- <label for="inputExistingPassword">{$LANG.existingpassword}</label>
- <input type="password" class="form-control" name="existingpw" id="inputExistingPassword" autocomplete="off" />
- </div>
- <div id="newPassword1" class="form-group has-feedback">
- <label for="inputNewPassword1">{$LANG.newpassword}</label>
- <input type="password" class="form-control" name="newpw" id="inputNewPassword1" autocomplete="off" />
- <span class="form-control-feedback glyphicon"></span>
- {include file="$template/includes/pwstrength.tpl"}
- </div>
- <div class="form-group">
- <button type="button" class="btn btn-default generate-password" data-targetfields="inputNewPassword1,inputNewPassword2">
- {$LANG.generatePassword.btnLabel}
- </button>
- </div>
- <div id="newPassword2" class="form-group has-feedback">
- <label for="inputNewPassword2">{$LANG.confirmnewpassword}</label>
- <input type="password" class="form-control" name="confirmpw" id="inputNewPassword2" autocomplete="off" />
- <span class="form-control-feedback glyphicon"></span>
- <div id="inputNewPassword2Msg"></div>
- </div>
- </div>
- <div class="form-actions">
- <input class="btn btn-primary" type="submit" value="{$LANG.clientareasavechanges}" />
- <input class="btn btn-default" type="reset" value="{$LANG.cancel}" />
- </div>
- </form>
- </div>
- </div>
|