2019-02-13 23:33:22 +01:00
|
|
|
<%= if get_flash(@conn, :info) do %>
|
2018-02-08 17:57:30 +01:00
|
|
|
<p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
|
2019-02-13 23:33:22 +01:00
|
|
|
<% end %>
|
|
|
|
<%= if get_flash(@conn, :error) do %>
|
2018-02-08 17:57:30 +01:00
|
|
|
<p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
|
2019-02-13 23:33:22 +01:00
|
|
|
<% end %>
|
2019-03-11 18:37:26 +01:00
|
|
|
|
2017-09-06 19:06:25 +02:00
|
|
|
<h2>OAuth Authorization</h2>
|
|
|
|
<%= form_for @conn, o_auth_path(@conn, :authorize), [as: "authorization"], fn f -> %>
|
2019-03-27 13:39:35 +01:00
|
|
|
|
2019-04-11 18:02:38 +02:00
|
|
|
<%= if @params["registration"] in ["true", true] do %>
|
|
|
|
<h3>This is the first time you visit! Please enter your Pleroma handle.</h3>
|
|
|
|
<p>Choose carefully! You won't be able to change this later. You will be able to change your display name, though.</p>
|
|
|
|
<div class="input">
|
|
|
|
<%= label f, :nickname, "Pleroma Handle" %>
|
|
|
|
<%= text_input f, :nickname, placeholder: "lain" %>
|
|
|
|
</div>
|
|
|
|
<%= hidden_input f, :name, value: @params["name"] %>
|
|
|
|
<%= hidden_input f, :password, value: @params["password"] %>
|
|
|
|
<br>
|
|
|
|
<% else %>
|
|
|
|
<div class="input">
|
|
|
|
<%= label f, :name, "Username" %>
|
|
|
|
<%= text_input f, :name %>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<%= label f, :password, "Password" %>
|
|
|
|
<%= password_input f, :password %>
|
|
|
|
</div>
|
|
|
|
<%= submit "Log In" %>
|
2019-06-03 17:58:04 +02:00
|
|
|
<%= render @view_module, "_scopes.html", Map.merge(assigns, %{form: f}) %>
|
2019-04-11 18:02:38 +02:00
|
|
|
<% end %>
|
2019-02-13 22:29:29 +01:00
|
|
|
|
2017-09-06 19:06:25 +02:00
|
|
|
<%= hidden_input f, :client_id, value: @client_id %>
|
|
|
|
<%= hidden_input f, :response_type, value: @response_type %>
|
|
|
|
<%= hidden_input f, :redirect_uri, value: @redirect_uri %>
|
2019-04-04 21:41:03 +02:00
|
|
|
<%= hidden_input f, :state, value: @state %>
|
2019-06-03 17:58:04 +02:00
|
|
|
<% end %>
|
2019-06-03 17:00:32 +02:00
|
|
|
|
|
|
|
<%= if Pleroma.Config.oauth_consumer_enabled?() do %>
|
|
|
|
<%= render @view_module, Pleroma.Web.Auth.Authenticator.oauth_consumer_template(), assigns %>
|
|
|
|
<% end %>
|
|
|
|
|