Skip to content
Snippets Groups Projects
devise.html.erb 971 B
Newer Older
Arnaud Levy's avatar
Arnaud Levy committed
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title><%= yield :title %></title>
    <%= csrf_meta_tags %>
    <%= csp_meta_tag %>
    <%= stylesheet_link_tag "admin/pure", media: 'all' %>
pabois's avatar
pabois committed
    <%= javascript_include_tag 'devise' %>
Arnaud Levy's avatar
Arnaud Levy committed
    <%= favicon_link_tag 'favicon.png' %>
Arnaud Levy's avatar
Arnaud Levy committed
  </head>
pabois's avatar
pabois committed
  <body class="<%= body_classes %>">
Arnaud Levy's avatar
Arnaud Levy committed
    <div class="container">
Arnaud Levy's avatar
Arnaud Levy committed
      <h1 class="my-5 py-5 text-center">
        <%= link_to root_path do %>
          <%= render 'logo' %>
        <% end %>
      </h1>
      <% unless notice.blank? %>
        <div class="alert alert-success mt-2" role="alert"><%= notice.html_safe %></div>
      <% end %>
      <% unless alert.blank? %>
        <div class="alert alert-danger mt-2" role="alert"><%= alert.html_safe %></div>
      <% end %>
      <%= yield %>
Arnaud Levy's avatar
Arnaud Levy committed
    </div>
Arnaud Levy's avatar
Arnaud Levy committed
    <%= render 'footer' %>
Arnaud Levy's avatar
Arnaud Levy committed
    <%= render 'bugsnag' %>
  </body>
</html>