aboutsummaryrefslogtreecommitdiff
path: root/lib/template.html.eex
blob: 5f9109c33b23c1b7412009294cf0b746599136d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script src="https://www.google.com/recaptcha/api.js" async defer></script>

<div class="g-recaptcha"
    data-sitekey="<%= @public_key %>"
    data-theme="<%= @options[:theme] %>"
    data-type="<%= @options[:type] %>"
    data-tabindex="<%= @options[:tabindex] %>"
    data-size="<%= @options[:size] %>">
</div>

<%= if @options[:noscript] do %>

  <noscript>
    <div style="width: 302px; height: 422px;">
      <div style="width: 302px; height: 422px; position: relative;">
        <div style="width: 302px; height: 422px; position: absolute;">
          <iframe src="https://www.google.com/recaptcha/api/fallback?k=<%= @public_key %>"
                       frameborder="0" scrolling="no"
                       style="width: 302px; height:422px; border-style: none;">
          </iframe>
        </div>
        <div style="width: 300px; height: 60px; border-style: none;
                       bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px;
                       background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px;">
          <textarea id="g-recaptcha-response" name="g-recaptcha-response"
                         class="g-recaptcha-response"
                         style="width: 250px; height: 40px; border: 1px solid #c1c1c1;
                                margin: 10px 25px; padding: 0px; resize: none;" >
          </textarea>
        </div>
      </div>
    </div>
  </noscript>

<% end %>