1 <%= if get_flash(@conn, :info) do %>
2 <p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
4 <%= if get_flash(@conn, :error) do %>
5 <p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
8 <h2>OAuth Authorization</h2>
9 <%= form_for @conn, o_auth_path(@conn, :authorize), [as: "authorization"], fn f -> %>
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>
16 <%= label f, :nickname, "Pleroma Handle" %>
17 <%= text_input f, :nickname, placeholder: "lain" %>
19 <%= hidden_input f, :name, value: @params["name"] %>
20 <%= hidden_input f, :password, value: @params["password"] %>
25 <%= label f, :name, "Username" %>
26 <%= text_input f, :name %>
29 <%= label f, :password, "Password" %>
30 <%= password_input f, :password %>
32 <%= submit "Log In" %>
33 <div class="scopes-input">
34 <%= label f, :scope, "The following permissions will be granted" %>
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 %>
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) %>
47 <%= checkbox f, :"scope_#{scope}", value: scope in @scopes && scope, checked_value: scope, unchecked_value: "", name: "authorization[scope][]" %>
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 %>