debian-mirror-gitlab/app/views/devise/confirmations/almost_there.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
1 KiB
Text
Raw Normal View History

2021-09-04 01:27:46 +05:30
- user_email = "(#{params[:email]})" if params[:email].present?
2021-11-18 22:05:49 +05:30
- request_link_start = '<a href="%{new_user_confirmation_path}">'.html_safe % { new_user_confirmation_path: new_user_confirmation_path }
- request_link_end = '</a>'.html_safe
2022-01-26 12:08:38 +05:30
- content_for :page_specific_javascripts do
2022-03-02 08:16:31 +05:30
= render "layouts/google_tag_manager_head"
2022-01-26 12:08:38 +05:30
= render "layouts/one_trust"
2022-04-04 11:22:00 +05:30
= render "layouts/bizible"
2022-03-02 08:16:31 +05:30
= render "layouts/google_tag_manager_body"
2021-09-04 01:27:46 +05:30
2021-04-17 20:07:23 +05:30
.well-confirmation.gl-text-center.gl-mb-6
2020-06-23 00:09:42 +05:30
%h1.gl-mt-0
2021-04-17 20:07:23 +05:30
= _("Almost there...")
2021-11-18 22:05:49 +05:30
%p{ class: 'gl-mb-6 gl-font-lg!' }
2021-09-04 01:27:46 +05:30
= _('Please check your email %{email} to confirm your account') % { email: user_email }
2017-08-17 22:00:37 +05:30
%hr
2018-03-17 18:26:18 +05:30
- if Gitlab::CurrentSettings.after_sign_up_text.present?
2021-04-17 20:07:23 +05:30
.well-confirmation.gl-text-center
2018-03-17 18:26:18 +05:30
= markdown_field(Gitlab::CurrentSettings, :after_sign_up_text)
2021-11-18 22:05:49 +05:30
%p.gl-text-center
= _("No confirmation email received? Check your spam folder or %{request_link_start}request new confirmation email%{request_link_end}.").html_safe % { request_link_start: request_link_start, request_link_end: request_link_end }