logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma

password_reset.html.eex (477B)


      1 <h2>Password Reset for <%= @user.nickname %></h2>
      2 <%= form_for @conn, util_path(@conn, :password_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 %>