notices, password recovery corner cases and UI changes

This commit is contained in:
Karol Selak 2021-03-21 12:41:21 +01:00
parent dace874f4f
commit a69df8e658
14 changed files with 49 additions and 38 deletions

View file

@ -2,7 +2,7 @@
<html>
<head>
<title>Book store</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name='viewport' content='width=device-width,initial-scale=1'>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
@ -11,6 +11,12 @@
</head>
<body>
<%= link_to 'Home', '/welcome', method: :get%>
<% flash.each do |type, msg| %>
<div class='card-panel teal lighten-5'>
<%= msg %>
</div>
<% end %>
<%= yield %>
</body>
</html>