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.
		
		
		
		
		
			
		
			
				
					
					
						
							29 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							1.3 KiB
						
					
					
				| <div class="max-w-xl mx-auto px-2">
 | |
|   <h1 class="flex text-4xl font-bold items-center justify-center my-8 space-x-2">
 | |
|     <%= svg_icon('waving_hand', class: 'h-10 w-10') %>
 | |
|     <span>Welcome to <%= Docuseal.product_name %></span>
 | |
|   </h1>
 | |
|   <%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put, class: 'space-y-6' }) do |f| %>
 | |
|     <div class="space-y-2">
 | |
|       <%= render 'devise/shared/error_messages', resource: %>
 | |
|       <%= f.hidden_field :reset_password_token %>
 | |
|       <div class="form-control">
 | |
|         <%= f.label :password, 'Set password', class: 'label' %>
 | |
|         <%= f.password_field :password, autofocus: true, autocomplete: 'new-password', class: 'base-input' %>
 | |
|         <% if @minimum_password_length %>
 | |
|           <label class="label">
 | |
|             <span class="label-text">(<%= @minimum_password_length %> characters minimum)</span>
 | |
|           </label>
 | |
|         <% end %>
 | |
|       </div>
 | |
|       <div class="form-control">
 | |
|         <%= f.label :password_confirmation, 'Confirm new password', class: 'label' %>
 | |
|         <%= f.password_field :password_confirmation, autocomplete: 'new-password', class: 'base-input' %>
 | |
|       </div>
 | |
|     </div>
 | |
|     <div class="form-control">
 | |
|       <%= f.button button_title(title: 'Save password and Sign in', disabled_with: 'Saving'), class: 'base-button' %>
 | |
|     </div>
 | |
|   <% end %>
 | |
| </div>
 |