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: 5bed9e0d7716c1f1d16c69d579edb50db408b531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%h3.page-title Authorization required
%main{ :role => "main" }
  %p.h4
    Authorize
    %strong.text-info= @chat_name_params[:chat_name]
    to use your account?

  %hr
  .actions
    = form_tag profile_chat_names_path, method: :post do
      = hidden_field_tag :token, @chat_name_token.token
      = submit_tag "Authorize", class: "btn btn-success 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: "btn btn-danger gl-ml-3"