23 lines
564 B
Plaintext
23 lines
564 B
Plaintext
<!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>
|
|
|
|
<hr>
|
|
<% if user_signed_in? %>
|
|
<p><%= link_to('Logout', destroy_user_session_path, method: 'delete') %></p>
|
|
<% end %>
|
|
</body>
|
|
</html>
|