Merge branch 'mastofe/system-font' into 'develop'
[akkoma] / lib / pleroma / web / templates / mastodon_api / mastodon / login.html.eex
index 6db4b05dc5da3bbba40c5eb37a7375c069f05073..34cd7ed898e61c3f92d2d1f79b672b9d0d6f7c6a 100644 (file)
@@ -1,10 +1,11 @@
-<h2>Login in to Mastodon Frontend</h2>
+<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 -> %>
-<%= label f, :name, "Name" %>
-<%= text_input f, :name %>
+<%= text_input f, :name, placeholder: "Username or email" %>
 <br>
-<%= label f, :password, "Password" %>
-<%= password_input f, :password %>
+<%= password_input f, :password, placeholder: "Password" %>
 <br>
-<%= submit "Authorize" %>
+<%= submit "Log in" %>
 <% end %>