mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
500 B
20 lines
500 B
<%= form_for user, data: { turbo_frame: :_top } do |f| %>
|
|
<div>
|
|
<%= f.label :first_name %>
|
|
<%= f.text_field :first_name, required: true %>
|
|
</div>
|
|
<div>
|
|
<%= f.label :last_name %>
|
|
<%= f.text_field :last_name, required: true %>
|
|
</div>
|
|
<div>
|
|
<%= f.label :email %>
|
|
<%= f.email_field :email, required: true %>
|
|
</div>
|
|
<div>
|
|
<%= f.label :password %>
|
|
<%= f.password_field :password, required: user.new_record? %>
|
|
</div>
|
|
<%= f.button button_title %>
|
|
<% end %>
|