1
0
postdoc/app/views/mailboxes/new.html.erb

10 lines
373 B
Plaintext
Raw Normal View History

2020-12-06 20:49:03 +01:00
<%= 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 %>