14 lines
416 B
Elixir
14 lines
416 B
Elixir
<%= form_tag Routes.login_path(@conn, :login_post), method: :post do %>
|
|
<%= if @continue do %>
|
|
<input type="hidden" name="continue" value="<%= @continue %>">
|
|
<% end %>
|
|
|
|
<label for="username">Username</label>
|
|
<input id="username" type="text" name="username">
|
|
<br>
|
|
<label for="password">Password</label>
|
|
<input id="password" type="password" name="password">
|
|
<br>
|
|
<%= submit "Log In" %>
|
|
<% end %>
|