24 lines
		
	
	
	
		
			783 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			783 B
		
	
	
	
		
			Text
		
	
	
	
	
	
- content_for :page_title do
 | 
						|
  = t('auth.setup.title')
 | 
						|
 | 
						|
= javascript_pack_tag 'sign_up', crossorigin: 'anonymous'
 | 
						|
 | 
						|
= simple_form_for(@user, url: auth_setup_path) do |f|
 | 
						|
  = render 'auth/shared/progress', stage: 'confirm'
 | 
						|
 | 
						|
  %h1.title= t('auth.setup.title')
 | 
						|
  %p.lead= t('auth.setup.email_settings_hint_html', email: content_tag(:strong, @user.email))
 | 
						|
 | 
						|
  = render 'shared/error_messages', object: @user
 | 
						|
 | 
						|
  %p.lead
 | 
						|
    %strong= t('auth.setup.link_not_received')
 | 
						|
  %p.lead= t('auth.setup.email_below_hint_html')
 | 
						|
 | 
						|
  .fields-group
 | 
						|
    = f.input :email, required: true, hint: false, input_html: { 'aria-label': t('simple_form.labels.defaults.email'), autocomplete: 'off' }
 | 
						|
 | 
						|
  .actions
 | 
						|
    = f.submit t('auth.resend_confirmation'), class: 'button'
 | 
						|
 | 
						|
.form-footer= render 'auth/shared/links'
 |