WhisperMaPhone/thoughts/templates/thoughts/login.html

28 lines
680 B
HTML

{% extends "thoughts/page.html" %}
{% load static %}
{% block title %}Post{% endblock %}
{% block head %}
<link href="{% static 'thoughts/login.css' %}" rel="stylesheet">
{% endblock %}
{% block navigation %}
<a class="text" href="/">Thoughts</a>
<a class="text" href="/about">About</a>
<h1 class="text" aria-current="page">Login</h1>
{% endblock %}
{% block main %}
<span class="text">
Please enter the password to access this page.
</span>
<form id="password-form" method="POST">
{% csrf_token %}
<input type="password" name="password" id="password">
<input type="submit" value="Login">
</form>
{% endblock %}