blob: 0b9ee8c71ad3fcc78aaeee45ce104eb233ffff15 (
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 the chat user
%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 pull-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 prepend-left-10"
|