Merge remote-tracking branch 'pleroma/develop' into feature/addressable-lists
[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 <div class="input">
15 <%= label f, :nickname, "Pleroma Handle" %>
16 <%= text_input f, :nickname, placeholder: "lain" %>
17 </div>
18 <%= hidden_input f, :name, value: @params["name"] %>
19 <%= hidden_input f, :password, value: @params["password"] %>
20 <br>
21 <% else %>
22 <div class="input">
23 <%= label f, :name, "Username" %>
24 <%= text_input f, :name %>
25 </div>
26 <div class="input">
27 <%= label f, :password, "Password" %>
28 <%= password_input f, :password %>
29 </div>
30 <%= submit "Log In" %>
31 <%= render @view_module, "_scopes.html", Map.merge(assigns, %{form: f}) %>
32 <% end %>
33
34 <%= hidden_input f, :client_id, value: @client_id %>
35 <%= hidden_input f, :response_type, value: @response_type %>
36 <%= hidden_input f, :redirect_uri, value: @redirect_uri %>
37 <%= hidden_input f, :state, value: @state %>
38 <% end %>
39
40 <%= if Pleroma.Config.oauth_consumer_enabled?() do %>
41 <%= render @view_module, Pleroma.Web.Auth.Authenticator.oauth_consumer_template(), assigns %>
42 <% end %>
43