polyglot/app/views/connections/new.html.erb

10 lines
240 B
Plaintext
Raw Normal View History

2018-08-31 14:06:42 +00:00
<div class="align-center">
<h2>Add a new contact:</h2>
<%= form_for User.new, url: connections_path do |f| %>
2018-08-31 14:15:15 +00:00
<%= f.label :email, class: "email_label_color" %>:
2018-08-31 14:06:42 +00:00
<%= f.text_field :email %>
<%= f.submit %>
<% end %>
</div>