You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
962 B
27 lines
962 B
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/themes/material_blue.css">
|
|
<body class="container mt-4">
|
|
<% if notice %><div class="alert alert-success"><%= notice %></div><% end %>
|
|
<% if alert %><div class="alert alert-danger"><%= alert %></div><% end %>
|
|
|
|
<!-- Flatpickr JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
|
|
<% if user_signed_in? %>
|
|
<p class="text-end">
|
|
Eingeloggt als <%= current_user.email %> |
|
|
<%= link_to "Profil", edit_user_registration_path %> |
|
|
<%= link_to "Logout", destroy_user_session_path, method: :delete %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= yield %>
|
|
</body>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
flatpickr(".flatpickr", {
|
|
altInput: true,
|
|
altFormat: "d.m.Y",
|
|
dateFormat: "Y-m-d"
|
|
});
|
|
});
|
|
</script>
|