This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/login.php

6 lines
147 B
PHP
Raw Normal View History

2022-01-17 07:30:09 +01:00
<?php
2022-01-19 20:16:09 +01:00
$app = require '../app/inc.php';
2022-01-17 07:30:09 +01:00
2022-01-19 19:50:54 +01:00
$app->view('template/header', ["title" => "Logg inn"]);
$app->view('login');
$app->view('template/footer');