Sha256: 1cab79724f5843786ef6b295463641f2748f5780ee1c4f8d7f104d4d64f59cbf

Contents?: true

Size: 556 Bytes

Versions: 8

Compression:

Stored size: 556 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  <title><%= Spud::Core.config.site_name %> Admin: Login</title>
  <%= stylesheet_link_tag 'admin/application' %>
  <%= csrf_meta_tags %>
</head>
<body>

<div class="login-container">
  <div class="login-form">
    <h1><%= @login_title || 'Login' %></h1>
    <% if flash[:notice] %>
      <div class="alert">
        <%= flash[:notice] %>
      </div>
    <% elsif flash[:error] %>
      <div class="alert alert-error">
        <%= flash[:error] %>
      </div>
    <% end %>
    <%= yield %>
  </div>
</div>

</body>
</html>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
tb_core-1.1.8 app/views/layouts/admin/login.html.erb
tb_core-1.1.7 app/views/layouts/admin/login.html.erb
tb_core-1.1.6 app/views/layouts/admin/login.html.erb
tb_core-1.1.5 app/views/layouts/admin/login.html.erb
tb_core-1.1.4 app/views/layouts/admin/login.html.erb
tb_core-1.1.2 app/views/layouts/admin/login.html.erb
tb_core-1.1.1 app/views/layouts/admin/login.html.erb
tb_core-1.1.0 app/views/layouts/admin/login.html.erb