34 lines
928 B
PHP
34 lines
928 B
PHP
<?php
|
|
|
|
require_once("./assets/php/utils.php")
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- TODO : ADD SEO STUFF -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link href="/assets/css/reset.css" rel="stylesheet">
|
|
<link href="/assets/css/common.css" rel="stylesheet">
|
|
<link href="/assets/css/index.css" rel="stylesheet">
|
|
<title>Food inventory</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="indexTitle">
|
|
<h1 class="montserrat white bold-900 big" id="title">Food inventory</h1>
|
|
<h2 class="white bold-900 noto-sans" id="subtitle">Keep an eye on your food.</h2>
|
|
</div>
|
|
|
|
<div class="noto-sans" id="login">
|
|
<a class="white" href="/login.php" id="loginButton">
|
|
<?php echo is_connected() ? "Compte\n" : "Connexion\n"; ?>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|