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

index.html.haml « external_redirect « external_redirect « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ef2b21d84cf8c64b63bac0d17424f687e8a218e (plain)
1
2
3
4
5
6
7
8
9
10
11
- page_title _("You're about to leave GitLab")

- url = local_assigns.fetch(:url)

.gl-max-w-62.gl-h-full.gl-display-flex.gl-justify-content-center.gl-align-items-center.gl-flex-direction-column.gl-mr-auto.gl-ml-auto.gl-px-3
  = sprite_icon('warning', size: 48, css_class: 'gl-text-orange-300')
  %h3.gl-mt-6= _("You're about to leave GitLab")
  %p= safe_format(_('This link will redirect you to %{url}. If this URL looks wrong, please go back or close this window. Do you want to continue?'), url: content_tag(:code, url))
  .gl-display-flex.gl-justify-content-center.gl-w-full
    = render Pajamas::ButtonComponent.new(variant: :default, href: url) do
      = _("Proceed")