philomena/lib/philomena_web/templates/captcha/_captcha.html.heex

10 lines
358 B
Text
Raw Normal View History

2024-06-02 05:50:36 +02:00
<%= if is_nil(@conn.assigns.current_user) do %>
<% challenge = challenge_name(@name) %>
<div class="field js-captcha-box">
<br />
<%= checkbox(:captcha, challenge, class: "js-captcha", value: 0, autocomplete: "off", data: [sitekey: hcaptcha_site_key()]) %>
<%= label(:captcha, challenge, "I am not a robot!") %>
<br />
</div>
<% end %>