PaperBag/www/index.php

39 lines
1.1 KiB
PHP
Raw Normal View History

2021-03-30 13:47:01 +02:00
<?php require 'webdata/init.php'; ?><!DOCTYPE html>
<html lang="en">
<head>
<?=getHtmlHeaders();?>
2021-03-31 02:19:33 +02:00
<title>Grocery Assist</title>
2021-03-30 13:47:01 +02:00
</head>
2021-04-11 02:38:24 +02:00
<body id="home">
<?php include 'webdata/navbar.php'; ?>
2021-03-30 13:47:01 +02:00
2021-03-31 02:19:33 +02:00
<h1 class="headline text-center">Grocery Assist</h1>
2021-04-11 02:38:24 +02:00
<div class="container-sm" style="padding-top: 5px;">
2021-03-31 02:19:33 +02:00
2021-04-27 02:56:39 +02:00
<div class="card-group" style="text-align: center;">
2021-03-31 02:19:33 +02:00
2021-05-15 00:51:24 +02:00
<div class="card h-100" style="">
<a href='./plan'>
2021-05-15 00:47:45 +02:00
<!-- <img src="#" class="card-img-top" alt="Plan">-->
2021-03-31 02:19:33 +02:00
<div class="card-body">
2021-04-11 02:38:24 +02:00
<h5 class="card-title">Plan shopping</h5>
2021-03-31 02:19:33 +02:00
<p class="card-text"></p>
</div>
2021-05-15 00:51:24 +02:00
</a>
</div>
2021-04-11 02:38:24 +02:00
<div class="card h-100" style="">
2021-05-15 00:47:45 +02:00
<!-- <img src="#" class="card-img-top" alt="Review">-->
2021-04-11 02:38:24 +02:00
<div class="card-body">
<h5 class="card-title">Review</h5>
<p class="card-text">Coming soon</p>
2021-03-31 02:19:33 +02:00
</div>
</div>
2021-03-31 02:19:33 +02:00
2021-04-27 02:56:39 +02:00
</div>
2021-03-31 02:19:33 +02:00
2021-04-27 02:56:39 +02:00
</div>
2021-03-30 13:47:01 +02:00
</body>
</html>