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.
		
		
		
		
		
			
		
			
				
					
					
						
							30 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							1.2 KiB
						
					
					
				| <%= form_for user, html: { class: 'space-y-4' }, data: { turbo_frame: :_top } do |f| %>
 | |
|   <div class="space-y-2">
 | |
|     <div class="form-control">
 | |
|       <%= f.label :first_name, t('first_name'), class: 'label' %>
 | |
|       <%= f.text_field :first_name, required: true, class: 'base-input', dir: 'auto' %>
 | |
|     </div>
 | |
|     <div class="form-control">
 | |
|       <%= f.label :last_name, t('last_name'), class: 'label' %>
 | |
|       <%= f.text_field :last_name, required: true, class: 'base-input', dir: 'auto' %>
 | |
|     </div>
 | |
|     <div class="form-control">
 | |
|       <%= f.label :email, t('email'), class: 'label' %>
 | |
|       <%= f.email_field :email, required: true, class: 'base-input' %>
 | |
|     </div>
 | |
|     <div class="form-control">
 | |
|       <%= f.label :password, t('password'), class: 'label' %>
 | |
|       <%= f.password_field :password, required: user.new_record?, class: 'base-input' %>
 | |
|     </div>
 | |
|     <% if f.object != current_user %>
 | |
|       <%= render 'role_select', f: %>
 | |
|     <% end %>
 | |
|     <% if local_assigns[:extra_fields_html].present? %>
 | |
|       <%= local_assigns[:extra_fields_html] %>
 | |
|     <% end %>
 | |
|   </div>
 | |
|   <div class="form-control pt-2">
 | |
|     <%= f.button button_title, class: 'base-button' %>
 | |
|   </div>
 | |
| <% end %>
 |