17 lines
664 B
HTML
17 lines
664 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block content %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<h2 class="header">Login</h2>
|
|
<form method="POST" >
|
|
<div class="form-group">
|
|
<label for="email">Email:</label>
|
|
<input type="email" class="form-control" id="email" name="email">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password:</label>
|
|
<input type="password" class="form-control" id="password" name="password" minlength="8">
|
|
</div>
|
|
<button type="submit" " class="btn btn-primary">Submit</button>
|
|
</form>
|
|
{% endblock %} |