Packages

Adds helpful extras to Guardian like default mailer support, as well as out of the box controllers and routes

Current section

Files

Jump to
sentinel lib sentinel templates password_reset new.html.eex
Raw

lib/sentinel/templates/password_reset/new.html.eex

<h2>Forgot your password?</h2>
<%= form_for @conn, Sentinel.RouterHelper.helpers.password_resets_path(@conn, :create), [as: :create], fn f -> %>
<div class="field">
<%= label f, :email, class: "sentinel control-label" %><br />
<%= email_input f, :email, class: "sentinel form-control" %>
</div>
<div class="actions">
<%= submit "Send me reset password instructions" %>
</div>
<% end %>
<%= render(Sentinel.SharedView, "links.html", assigns) %>