Aggiedit/lib/aggiedit_web/templates/user_session/new.html.heex

33 lines
957 B
Plaintext
Raw Normal View History

<h1>Log in</h1>
<.form let={f} for={@conn} action={Routes.user_session_path(@conn, :create)} as={:user}>
<%= if @error_message do %>
<div class="alert alert-danger">
<p><%= @error_message %></p>
</div>
<% end %>
2022-04-14 02:18:01 -04:00
<div class="form-group">
<%= label f, :email %>
<%= email_input f, :email, required: true, class: "form-control" %>
</div>
<div class="form-group mt-2">
<%= label f, :password %>
<%= password_input f, :password, required: true, class: "form-control" %>
</div>
<div class="form-check mt-2">
<%= label f, :remember_me, "Keep me logged in for 60 days" %>
<%= checkbox f, :remember_me, class: "form-check-input" %>
</div>
<div class="mt-2">
<%= submit "Log in", class: "btn btn-primary" %>
</div>
</.form>
2022-04-14 02:18:01 -04:00
<hr>
<p>
<%= link "Register", to: Routes.user_registration_path(@conn, :new) %> |
<%= link "Forgot your password?", to: Routes.user_reset_password_path(@conn, :new) %>
</p>