Add version numbers; make app title configurable

This commit is contained in:
Lexi / Zoe 2021-09-23 00:55:05 +02:00
parent 186dcdc0cb
commit 8df2684e5c
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
11 changed files with 159 additions and 38 deletions

View file

@ -1,19 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Login - MailAccountAdmin</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="/static/style.css"/>
</head>
{% extends "base.html.twig" %}
<body>
{% block title %}Login{% endblock %}
{% set main_classes = 'login_page' %}
<header>
<h1>MailAccountAdmin</h1>
</header>
<main class="login_page">
{% block content %}
<h2>Login</h2>
<form action="/login" method="POST">
@ -38,7 +28,4 @@
</tr>
</table>
</form>
</main>
</body>
</html>
{% endblock %}