MastodonUI login: Show error message on error.
authorRoger Braun <rbraun@Bobble.local>
Thu, 23 Nov 2017 11:06:14 +0000 (12:06 +0100)
committerRoger Braun <rbraun@Bobble.local>
Thu, 23 Nov 2017 11:06:14 +0000 (12:06 +0100)
lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
lib/pleroma/web/templates/mastodon_api/mastodon/login.html.eex

index fc7f210969eae6f2e72b8a968afab5e55fa78863..82887966c257469d87247f9d8229c7c4f33044ba 100644 (file)
@@ -559,7 +559,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
 
   def login(conn, _) do
     conn
-    |> render(MastodonView, "login.html")
+    |> render(MastodonView, "login.html", %{error: false})
   end
 
   defp get_or_make_app() do
@@ -581,6 +581,10 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
       conn
       |> put_session(:oauth_token, token.token)
       |> redirect(to: "/web/getting-started")
+    else
+      _e ->
+        conn
+        |> render(MastodonView, "login.html", %{error: "Wrong username or password"})
     end
   end
 
index 89d97561b109254525e048b59bebdccc1a8fbae3..2ef67b901d0216ec5117751ef8d57872039c2b53 100644 (file)
@@ -1,4 +1,7 @@
 <h2>Login in 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" %>
 <br>