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
						
					
					
						
							2.0 KiB
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							2.0 KiB
						
					
					
				| <%= render 'shared/turbo_modal_large', title: t('edit_recipient') do %>
 | |
|   <div class="px-5 mb-5 mt-4">
 | |
|     <%= form_for '', url: submitter_path(@submitter), method: :patch, html: { autocomplete: 'off' }, data: { turbo_frame: :_top } do |f| %>
 | |
|       <div class="mb-2">
 | |
|         <submitter-item class="form-control">
 | |
|           <submitters-autocomplete data-field="name">
 | |
|             <%= text_field_tag 'submitter[name]', @submitter.name, autocomplete: 'off', class: 'base-input !h-10 w-full', placeholder: "#{t('name')} (#{t('optional')})", dir: 'auto' %>
 | |
|           </submitters-autocomplete>
 | |
|           <div class="grid md:grid-cols-2 gap-1.5 mt-1.5">
 | |
|             <submitters-autocomplete data-field="email">
 | |
|               <%= email_field_tag 'submitter[email]', @submitter.email, autocomplete: 'off', class: 'base-input !h-10 mt-1.5 w-full', placeholder: "#{t('email')} (#{t('optional')})" %>
 | |
|             </submitters-autocomplete>
 | |
|             <submitters-autocomplete data-field="phone">
 | |
|               <%= telephone_field_tag 'submitter[phone]', @submitter.phone, autocomplete: 'off', pattern: '^\+[0-9\s\-]+$', class: 'base-input !h-10 mt-1.5 w-full', placeholder: "#{t('phone')} (#{t('optional')})", oninvalid: "this.value ? this.setCustomValidity('#{t('use_international_format_1xxx_')}') : ''", oninput: "this.setCustomValidity('')" %>
 | |
|             </submitters-autocomplete>
 | |
|           </div>
 | |
|         </submitter-item>
 | |
|       </div>
 | |
|       <div>
 | |
|         <%= render 'submissions/send_email', f:, template: @submitter.template, submitter: @submitter, resend_email: @submitter.sent_at?, submitter_email_message: @submitter_email_message, disable_save_as_default_template_option: true, message_per_submitter: false %>
 | |
|         <%= render 'submissions/send_sms', f:, resend_sms: @submitter.sent_at? %>
 | |
|       </div>
 | |
|       <div class="form-control mt-4">
 | |
|         <%= f.button button_title(title: t('update_recipient'), disabled_with: t('updating')), class: 'base-button' %>
 | |
|       </div>
 | |
|     <% end %>
 | |
|   </div>
 | |
|   <%= content_for(:modal_extra) %>
 | |
| <% end %>
 |