13 lines
481 B
Plaintext
13 lines
481 B
Plaintext
<h1>Log In</h1>
|
|
|
|
<% if err then %>
|
|
<h2><%= err %></h2>
|
|
<% end %>
|
|
<form method="post" action="<%= url_for('user_login') %>" enctype="multipart/form-data">
|
|
<label for="username">Username</label><br>
|
|
<input type="text" id="username" name="username" required autocomplete="username"><br>
|
|
<label for="password">Password</label><br>
|
|
<input type="password" id="password" name="password" required autocomplete="current-password"><br>
|
|
<input type="submit" value="Log in">
|
|
</form>
|