| 123456789101112131415161718192021222324252627282930 |
- {*
- **********************************************************
- * Developed by: Team Theme Metro
- * Website: http://www.thememetro.com
- **********************************************************
- *}
- <p>{$LANG.pwresetemailneeded}</p>
- <form method="post" action="{routePath('password-reset-validate-email')}" role="form">
- <input type="hidden" name="action" value="reset" />
- <div class="form-group">
- <label for="inputEmail">{lang key='loginemail'}</label>
- <input type="email" name="email" class="form-control" id="inputEmail" placeholder="{$LANG.enteremail}" autofocus>
- </div>
- {if $captcha->isEnabled()}
- <div class="text-center margin-bottom">
- {include file="$template/includes/captcha.tpl"}
- </div>
- {/if}
- <div class="form-group text-center">
- <button type="submit" class="btn btn-block btn-lg btn-primary{$captcha->getButtonClass($captchaForm)}">
- {lang key='pwresetsubmit'}
- </button>
- </div>
- </form>
|