16 lines
643 B
Text
16 lines
643 B
Text
- user_email = "(#{params[:email]})" if params[:email].present?
|
|
|
|
.well-confirmation.gl-text-center.gl-mb-6
|
|
%h1.gl-mt-0
|
|
= _("Almost there...")
|
|
%p.lead.gl-mb-6
|
|
= _('Please check your email %{email} to confirm your account') % { email: user_email }
|
|
%hr
|
|
- if Gitlab::CurrentSettings.after_sign_up_text.present?
|
|
.well-confirmation.gl-text-center
|
|
= markdown_field(Gitlab::CurrentSettings, :after_sign_up_text)
|
|
%p.text-center
|
|
= _("No confirmation email received? Please check your spam folder or")
|
|
.gl-mb-6.prepend-top-20.gl-text-center
|
|
%a.gl-link{ href: new_user_confirmation_path }
|
|
= _("Request new confirmation email")
|