File size: 529 Bytes
1106e39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
{% block content %}
<div class="container">
  <h2>Sign In</h2>
  <form method="POST" id="loginForm">
    <input type="text" name="username" id="loginUsername" placeholder="Username" required />
    <input type="password" name="password" id="loginPassword" placeholder="Password" required />
    <button type="submit">Login</button>
  </form>
  <p id="loginMessage"></p>
  <p class="switch-page">
    Don't have an account? <a href="{{ url_for('signup') }}">Sign up here</a>
  </p>
</div>
{% endblock %}