Revert "Add remote follow pages."
[akkoma] / lib / pleroma / web / templates / twitter_api / util / password_reset.html.eex
1 <h2>Password Reset for <%= @user.nickname %></h2>
2 <%= form_for @conn, util_path(@conn, :password_reset), [as: "data"], fn f -> %>
3 <%= label f, :password, "Password" %>
4 <%= password_input f, :password %>
5 <br>
6
7 <%= label f, :password_confirmation, "Confirmation" %>
8 <%= password_input f, :password_confirmation %>
9 <br>
10 <%= hidden_input f, :token, value: @token.token %>
11 <%= submit "Reset" %>
12 <% end %>