8000 [stable-3_5_0] Add support for reCaptcha on user lost password page by Godoy0722 · Pull Request #123 · pkp/pragma · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[stable-3_5_0] Add support for reCaptcha on user lost password page #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: stable-3_5_0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions templates/frontend/pages/userLostPassword.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@
<input class="form-control" type="email" name="email" id="email" value="{$email|escape}" required>
</div>

{* recaptcha spam blocker *}
{if $recaptchaPublicKey}
<fieldset class="recaptcha_wrapper">
<div class="fields">
<div class="recaptcha">
<div class="g-recaptcha" data-sitekey="{$recaptchaPublicKey|escape}">
</div><label for="g-recaptcha-response" style="display:none;" hidden>Recaptcha response</label>
</div>
</div>
</fieldset>
{/if}

{* altcha spam blocker *}
{if $altchaEnabled}
<fieldset class="altcha_wrapper">
Expand Down
0