* Verify link ownership with rel="me" * Add explanation about verification to UI * Perform link verifications * Add click-to-copy widget for verification HTML * Redesign edit profile page * Redesign forms * Improve responsive design of settings pages * Restore landing page sign-up form * Fix typo * Support <link> tags, add spec * Fix links not being verified on first discovery and passive updates
		
			
				
	
	
		
			16 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
- content_for :page_title do
 | 
						|
  = t('auth.confirm_email')
 | 
						|
 | 
						|
= simple_form_for(current_user, as: 'user', url: finish_signup_path, html: { role: 'form'}) do |f|
 | 
						|
  - if @show_errors && current_user.errors.any?
 | 
						|
    #error_explanation
 | 
						|
      - current_user.errors.full_messages.each do |msg|
 | 
						|
        = msg
 | 
						|
        %br
 | 
						|
 | 
						|
  .fields-group
 | 
						|
    = f.input :email, wrapper: :with_label, required: true, hint: false
 | 
						|
 | 
						|
  .actions
 | 
						|
    = f.submit t('auth.confirm_email'), class: 'button'
 |