password-reset-email-prompt.tpl 988 B

123456789101112131415161718192021222324252627282930
  1. {*
  2. **********************************************************
  3. * Developed by: Team Theme Metro
  4. * Website: http://www.thememetro.com
  5. **********************************************************
  6. *}
  7. <p>{$LANG.pwresetemailneeded}</p>
  8. <form method="post" action="{routePath('password-reset-validate-email')}" role="form">
  9. <input type="hidden" name="action" value="reset" />
  10. <div class="form-group">
  11. <label for="inputEmail">{lang key='loginemail'}</label>
  12. <input type="email" name="email" class="form-control" id="inputEmail" placeholder="{$LANG.enteremail}" autofocus>
  13. </div>
  14. {if $captcha->isEnabled()}
  15. <div class="text-center margin-bottom">
  16. {include file="$template/includes/captcha.tpl"}
  17. </div>
  18. {/if}
  19. <div class="form-group text-center">
  20. <button type="submit" class="btn btn-block btn-lg btn-primary{$captcha->getButtonClass($captchaForm)}">
  21. {lang key='pwresetsubmit'}
  22. </button>
  23. </div>
  24. </form>