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
						
					
					
						
							831 B
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							831 B
						
					
					
				| <% title = "Sign in to your account to submit CORE data" %> | |
|  | |
| <% content_for :title, title %> | |
|  | |
| <%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %> | |
|   <div class="govuk-grid-row"> | |
|     <div class="govuk-grid-column-two-thirds"> | |
|       <% flash_to_model_errors(resource) %> | |
|       <%= f.govuk_error_summary %> | |
|  | |
|       <h1 class="govuk-heading-l"> | |
|         <%= content_for(:title) %> | |
|       </h1> | |
|  | |
|       <%= render "devise/shared/links" %> | |
|  | |
|       <%= f.govuk_email_field :email, | |
|         label: { text: "Email address" }, | |
|         autocomplete: "email", | |
|         spellcheck: "false" %> | |
|  | |
|       <%= f.govuk_password_field :password, | |
|         autocomplete: "current-password" %> | |
|  | |
|       <%= f.hidden_field :start, value: request.params["start"] %> | |
|       <%= f.govuk_submit "Sign in" %> | |
|     </div> | |
|   </div> | |
| <% end %>
 | |
| 
 |