Merge commit '07fed0fda2473fc4e1e3b01e863217391fd2902f'; commit 'e3173a279dad89dfce6e...
[akkoma] / lib / pleroma / web / templates / twitter_api / password / reset.html.eex
1 <h2>Password Reset for <%= @user.nickname %></h2>
2 <%= form_for @conn, Routes.reset_password_path(@conn, :do_reset), [as: "data"], fn f -> %>
3 <div class="form-row">
4 <%= label f, :password, "Password" %>
5 <%= password_input f, :password %>
6 </div>
7 <div class="form-row">
8 <%= label f, :password_confirmation, "Confirmation" %>
9 <%= password_input f, :password_confirmation %>
10 </div>
11 <%= hidden_input f, :token, value: @token.token %>
12 <%= submit "Reset" %>
13 <% end %>