Welcome to mirror list, hosted at ThFree Co, Russian Federation.

successful_verification.haml « sessions « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59280cc13caad9f17a4608f7ba88965693788d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
= content_for :meta_tags do
  %meta{ 'http-equiv': 'refresh', content: "3; url=#{@redirect_url}" }
.gl-text-center.gl-max-w-62.gl-mx-auto
  .svg-content.svg-80
    = image_tag 'illustrations/success-sm.svg'
  %h2
    = s_('IdentityVerification|Verification successful')
  %p.gl-pt-2
    - redirect_url_start = '<a href="%{url}"">'.html_safe % { url: @redirect_url }
    - redirect_url_end = '</a>'.html_safe
    = html_escape(s_("IdentityVerification|Your account has been successfully verified. You'll be redirected to your account in just a moment. You can also %{redirect_url_start}refresh the page%{redirect_url_end}.")) % { redirect_url_start: redirect_url_start, redirect_url_end: redirect_url_end }