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

new.html.haml « chat_names « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f008abf376d1bf1dd665a8035ef3fda2e38619a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%h3.page-title
  = _("Authorization required")
%main{ :role => "main" }
  %p.h4
    = html_escape(_("Authorize %{user} to use your account?")) % { user: tag.strong(@chat_name_params[:chat_name]) }

  %hr
  .actions
    = form_tag profile_chat_names_path, method: :post do
      = hidden_field_tag :token, @chat_name_token.token
      = submit_tag _("Authorize"), class: "gl-button btn btn-confirm wide float-left"
    = form_tag deny_profile_chat_names_path, method: :delete do
      = hidden_field_tag :token, @chat_name_token.token
      = submit_tag _("Deny"), class: "gl-button btn btn-danger gl-ml-3"