c7b4ef79226566370aca646992df4fcd0d7520de
[akkoma] / lib / pleroma / web / templates / o_auth / o_auth / show.html.eex
1 <%= if get_flash(@conn, :info) do %>
2 <p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
3 <% end %>
4 <%= if get_flash(@conn, :error) do %>
5 <p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
6 <% end %>
7
8 <h2>OAuth Authorization</h2>
9 <%= form_for @conn, o_auth_path(@conn, :authorize), [as: "authorization"], fn f -> %>
10
11 <%= if @params["registration"] in ["true", true] do %>
12 <h3>This is the first time you visit! Please enter your Pleroma handle.</h3>
13 <p>Choose carefully! You won't be able to change this later. You will be able to change your display name, though.</p>
14 <p>Please only use lowercase letters and no special characters</p>
15 <div class="input">
16 <%= label f, :nickname, "Pleroma Handle" %>
17 <%= text_input f, :nickname, placeholder: "lain" %>
18 </div>
19 <%= hidden_input f, :name, value: @params["name"] %>
20 <%= hidden_input f, :password, value: @params["password"] %>
21 <br>
22
23 <% else %>
24 <div class="input">
25 <%= label f, :name, "Username" %>
26 <%= text_input f, :name %>
27 </div>
28 <div class="input">
29 <%= label f, :password, "Password" %>
30 <%= password_input f, :password %>
31 </div>
32 <%= submit "Log In" %>
33 <div class="scopes-input">
34 <%= label f, :scope, "The following permissions will be granted" %>
35 <div class="scopes">
36 <%= for scope <- @available_scopes do %>
37 <%# Note: using hidden input with `unchecked_value` in order to distinguish user's empty selection from `scope` param being omitted %>
38 <%= if scope in @scopes do %>
39 <div class="scope">
40 <%= checkbox f, :"scope_#{scope}", value: scope in @scopes && scope, checked_value: scope, unchecked_value: "", name: "authorization[scope][]" %>
41 <%= label f, :"scope_#{scope}", String.capitalize(scope) %>
42 <%= if scope in @scopes && scope do %>
43 <%= String.capitalize(scope) %>
44 <% end %>
45 </div>
46 <% else %>
47 <%= checkbox f, :"scope_#{scope}", value: scope in @scopes && scope, checked_value: scope, unchecked_value: "", name: "authorization[scope][]" %>
48 <% end %>
49 <% end %>
50 </div>
51 </div>
52 <% end %>
53
54 <%= hidden_input f, :client_id, value: @client_id %>
55 <%= hidden_input f, :response_type, value: @response_type %>
56 <%= hidden_input f, :redirect_uri, value: @redirect_uri %>
57 <%= hidden_input f, :state, value: @state %>
58 <% end %>