Sha256: cba92d1332931511fed7f7cf64b7d6e1f47032b26b3add4e604f1bbc33b5ab4c

Contents?: true

Size: 804 Bytes

Versions: 2

Compression:

Stored size: 804 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  <title>InvisibleCaptcha Demo</title>
  <%= stylesheet_link_tag "/styles.css" %>
  <%= csrf_meta_tags %>
  <%= invisible_captcha_styles %>
</head>
<body>
  <h1>InvisibleCaptcha v<%= InvisibleCaptcha::VERSION %> - Demo</h1>

  <p>
    <%= link_to "Default settings", new_topic_path %> |
    <%= link_to "With visual honeypots", new_topic_path(context: "visual_honeypots") %> |
    <%= link_to "With timestamp disabled", new_topic_path(context: "timestamp_disabled") %>
  </p>

  <% flash.each do |key, value| %>
    <ul class="errors">
      <li>
        <%= "[#{key.upcase}] #{value}" %>
      </li>
    </ul>
  <% end %>

  <%= yield %>

  <footer>
    Running on
    <b>Ruby <%= RUBY_VERSION %></b> and
    <b>Rails <%= Rails.version %></b>
  </footer>
  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
invisible_captcha-2.3.0 spec/dummy/app/views/layouts/application.html.erb
invisible_captcha-2.2.0 spec/dummy/app/views/layouts/application.html.erb