tabletop-companion/app/views/table_invites/new.html.erb

12 lines
348 B
Plaintext
Raw Permalink Normal View History

2024-05-29 14:24:18 +00:00
<% content_for :title, t(".new_table_invite", name: @table.name) %>
<h2><%= t(".new_table_invite", name: @table.name) %></h2>
<p><%= t(".new_invite_description") %></p>
2024-05-29 15:47:31 +00:00
<%= form_with model: @table_invite, url: table_table_invites_path do |f| %>
2024-05-29 14:24:18 +00:00
<%= f.label :email %>
<%= f.email_field :email %>
<%= f.submit t(".button_text") %>
<% end %>