1
0
postdoc/app/views/mailboxes/new.html.erb
2020-12-06 21:05:11 +01:00

10 lines
373 B
Plaintext

<%= render ModalComponent.new(title: 'New Mailbox') do |component| %>
<% component.with(:body) do %>
<%= render('form') %>
<% end %>
<% component.with(:footer) do %>
<button data-action="click->modal#close" class="button">Cancel</button>
<input type="submit" form="new_mailbox" class="button button--primary" value="Create Mailbox">
<% end %>
<% end %>