2021-03-01 13:42:26 -05:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-sm-9 col-md-7 col-lg-5 col-xl-4 ">
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-01 13:42:26 -05:00
|
|
|
<h3>
|
|
|
|
<%= icon_div @conn, "bi-box-arrow-in-left", [class: "icon baseline"] %>
|
|
|
|
Log in
|
|
|
|
</h3>
|
|
|
|
<p class="lead">Who goes there?</p>
|
|
|
|
|
2021-03-01 16:29:19 -05:00
|
|
|
<%= form_for @conn, Routes.user_session_path(@conn, :create), [as: :user, class: "needs-validation", novalidate: true], fn f -> %>
|
2021-03-01 13:42:26 -05:00
|
|
|
<%= if @error_message do %>
|
|
|
|
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
|
|
|
<%= @error_message %>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= label f, :email, class: "form-label" %>
|
|
|
|
<div class="input-group has-validation mb-3">
|
|
|
|
<span class="input-group-text">
|
|
|
|
<%= icon_div @conn, "bi-at", [class: "icon fs-5"] %>
|
|
|
|
</span>
|
|
|
|
<%= email_input f, :email,
|
|
|
|
class: "form-control",
|
2021-03-01 16:29:19 -05:00
|
|
|
placeholder: "e.g., babka@73k.us",
|
|
|
|
maxlength: User.max_email,
|
|
|
|
required: true
|
|
|
|
%>
|
|
|
|
<span class="invalid-feedback">must be a valid email address</span>
|
2021-03-01 13:42:26 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= label f, :password, class: "form-label" %>
|
|
|
|
<div class="input-group has-validation mb-3">
|
|
|
|
<span class="input-group-text">
|
|
|
|
<%= icon_div @conn, "bi-key", [class: "icon fs-5"] %>
|
|
|
|
</span>
|
|
|
|
<%= password_input f, :password,
|
|
|
|
class: "form-control",
|
2021-03-01 16:29:19 -05:00
|
|
|
required: true
|
|
|
|
%>
|
|
|
|
<span class="invalid-feedback">password is required</span>
|
2020-09-12 20:07:02 -04:00
|
|
|
</div>
|
|
|
|
|
2021-03-01 13:42:26 -05:00
|
|
|
<div class="form-check mb-3">
|
|
|
|
<%= checkbox f, :remember_me, class: "form-check-input" %>
|
|
|
|
<%= label f, :remember_me, "Keep me logged in for 60 days", class: "form-check-label" %>
|
|
|
|
</div>
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-01 13:42:26 -05:00
|
|
|
<div class="mb-3">
|
|
|
|
<%= submit "Log in", class: "btn btn-primary" %>
|
|
|
|
</div>
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-01 13:42:26 -05:00
|
|
|
<% end %>
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-01 13:42:26 -05:00
|
|
|
<p>
|
|
|
|
<%= link "Register", to: Routes.user_registration_path(@conn, :new) %> |
|
|
|
|
<%= link "Forgot your password?", to: Routes.user_reset_password_path(@conn, :new) %>
|
|
|
|
</p>
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-01 13:42:26 -05:00
|
|
|
</div>
|
|
|
|
</div>
|