Portfolio / templates /login.html
simar007's picture
Upload 9 files
1106e39 verified
raw
history blame contribute delete
529 Bytes
{% 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 %}