parent
3d8f79cc9e
commit
7cb0ec35f6
2 changed files with 10 additions and 6 deletions
|
@ -1,12 +1,14 @@
|
|||
<main role="main" class="container">
|
||||
<%= if not is_nil(get_flash(@conn, :info)) do %>
|
||||
<p class="notification is-info" role="alert">
|
||||
<button class="delete" onclick="this.parentNode.remove();"></button>
|
||||
<%= get_flash(@conn, :info) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
<%= if not is_nil(get_flash(@conn, :error)) do %>
|
||||
<p class="notification is-danger" role="alert">
|
||||
<button class="delete" onclick="this.parentNode.remove();"></button>
|
||||
<%= get_flash(@conn, :error) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
<main role="main" class="container">
|
||||
<%= if live_flash(@flash, :info) do %>
|
||||
<p class="alert alert-info" role="alert"
|
||||
phx-click="lv:clear-flash"
|
||||
phx-value-key="info"><%= live_flash(@flash, :info) %></p>
|
||||
<p class="alert alert-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info">
|
||||
<button class="delete" onclick="this.parentNode.remove();"></button>
|
||||
<%= live_flash(@flash, :info) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
<%= if live_flash(@flash, :error) do %>
|
||||
<p class="alert alert-danger" role="alert"
|
||||
phx-click="lv:clear-flash"
|
||||
phx-value-key="error"><%= live_flash(@flash, :error) %></p>
|
||||
<p class="alert alert-danger" role="alert" phx-click="lv:clear-flash" phx-value-key="error">
|
||||
<button class="delete" onclick="this.parentNode.remove();"></button>
|
||||
<%= live_flash(@flash, :error) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
<%= @inner_content %>
|
||||
|
|
Loading…
Add table
Reference in a new issue