Actually use the right captcha IDs...
This commit is contained in:
parent
720cf5303e
commit
3dc286b511
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
<p class="login-box-msg">@lang('auth.reset_password_text')</p>
|
<p class="login-box-msg">@lang('auth.reset_password_text')</p>
|
||||||
<form action="{{ route('auth.reset.post') }}" method="POST">
|
<form id="resetForm" action="{{ route('auth.reset.post') }}" method="POST">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="email" class="control-label">@lang('strings.email')</label>
|
<label for="email" class="control-label">@lang('strings.email')</label>
|
||||||
<div>
|
<div>
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
||||||
<script>
|
<script>
|
||||||
function onSubmit(token) {
|
function onSubmit(token) {
|
||||||
document.getElementById("loginForm").submit();
|
document.getElementById("resetForm").submit();
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@endif
|
@endif
|
||||||
|
|
Loading…
Reference in a new issue