2024-02-02 09:05:04 -06:00
|
|
|
<%
|
2024-02-06 14:58:17 -03:00
|
|
|
header_title t('.title')
|
2024-02-02 09:05:04 -06:00
|
|
|
%>
|
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form_with model: @user, url: registration_path do |form| %>
|
2024-02-03 14:17:49 -06:00
|
|
|
<%= auth_messages form %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form.email_field :email, autofocus: false, autocomplete: "email", required: 'required', placeholder: 'you@example.com', label: true %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form.password_field :password, autocomplete: "new-password", required: 'required', label: true %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form.password_field :password_confirmation, autocomplete: "new-password", required: 'required', label: true %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-02-02 17:49:28 -06:00
|
|
|
<% if hosted_app? %>
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form.password_field :invite_code, required: 'required', label: true %>
|
2024-02-02 17:49:28 -06:00
|
|
|
<% end %>
|
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form.submit %>
|
2024-02-02 09:05:04 -06:00
|
|
|
<% end %>
|