scheduled_reminders/app/views/layouts/application.html.erb

23 lines
564 B
Plaintext
Raw Normal View History

2020-02-12 13:02:03 +01:00
<!DOCTYPE html>
<html>
<head>
<title>ScheduledReminders</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
</head>
<body>
<%= yield %>
<p class="notice"><%= notice %></p>
<p class="alert"><%= alert %></p>
2020-02-12 13:57:03 +01:00
<hr>
<% if user_signed_in? %>
<p><%= link_to('Logout', destroy_user_session_path, method: 'delete') %></p>
2020-02-12 13:57:03 +01:00
<% end %>
2020-02-12 13:02:03 +01:00
</body>
</html>