Unify Mastodon Login with OAuth login.

This removes duplication in the login code.
This commit is contained in:
lain 2018-11-06 15:19:11 +01:00
commit 4f640c43ed
3 changed files with 49 additions and 45 deletions

View file

@ -1,11 +0,0 @@
<h2>Login to Mastodon Frontend</h2>
<%= if @error do %>
<h2><%= @error %></h2>
<% end %>
<%= form_for @conn, mastodon_api_path(@conn, :login), [as: "authorization"], fn f -> %>
<%= text_input f, :name, placeholder: "Username or email" %>
<br>
<%= password_input f, :password, placeholder: "Password" %>
<br>
<%= submit "Log in" %>
<% end %>