1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 06:38:48 +00:00
akkoma/lib/pleroma/web/templates/twitter_api/password/reset.html.eex

14 lines
481 B
Elixir
Raw Normal View History

2017-10-19 17:37:24 +02:00
<h2>Password Reset for <%= @user.nickname %></h2>
<%= form_for @conn, reset_password_path(@conn, :do_reset), [as: "data"], fn f -> %>
2019-03-27 22:37:20 +06:30
<div class="form-row">
<%= label f, :password, "Password" %>
<%= password_input f, :password %>
</div>
<div class="form-row">
<%= label f, :password_confirmation, "Confirmation" %>
<%= password_input f, :password_confirmation %>
</div>
<%= hidden_input f, :token, value: @token.token %>
<%= submit "Reset" %>
2017-10-19 17:37:24 +02:00
<% end %>