Improving all forms
This commit is contained in:
		
							parent
							
								
									6f7c9774c7
								
							
						
					
					
						commit
						43df35213e
					
				
					 16 changed files with 268 additions and 267 deletions
				
			
		|  | @ -1,15 +1,14 @@ | |||
| - content_for :page_title do | ||||
|   Set new password | ||||
| 
 | ||||
| = form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| | ||||
|   = devise_error_messages! | ||||
|   = f.hidden_field :reset_password_token | ||||
| = simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| | ||||
|   = render 'shared/error_messages', object: resource | ||||
|   = f.input :reset_password_token, as: :hidden | ||||
| 
 | ||||
|   = f.input :password, autofocus: true, autocomplete: "off", placeholder: 'New password' | ||||
|   = f.input :password_confirmation, autocomplete: "off", placeholder: 'Confirm new password' | ||||
| 
 | ||||
|   .field | ||||
|     = f.password_field :password, autofocus: true, autocomplete: "off", placeholder: 'New password' | ||||
|   .field | ||||
|     = f.password_field :password_confirmation, autocomplete: "off", placeholder: 'Confirm new password' | ||||
|   .actions | ||||
|     = f.button "Change my password", type: :submit | ||||
|     = f.button :button, "Change my password", type: :submit | ||||
| 
 | ||||
| = render "devise/shared/links" | ||||
| .form-footer= render "devise/shared/links" | ||||
|  |  | |||
		Reference in a new issue