Include bulma, make navbar, first edition user.php

This commit is contained in:
2023-01-23 15:20:07 +01:00
parent c1b4875f4e
commit 621e3029d7
10 changed files with 243 additions and 16 deletions

View File

@@ -1,16 +1,20 @@
<?php
include('./db_connect.php');
$res = pg_query($dbconn, "SELECT * FROM users");
if (!$res) {
echo "An error occurred.\n";
exit;
}
while ($row = pg_fetch_row($res)) {
echo "id: $row[0] username: $row[1]";
}
?>
<!DOCTYPE html>
<html lang="en" class="has-background-light">
<head>
<?php
$title = "PVVMDB";
include "includes/head.php";
?>
</head>
<body >
<?php
include "includes/nav.php";
?>
<div class="container">
<h1 class="title">Welcome to PVVMDB</h1>
<p class="subtitle">
This application is made to register and manage PVV Membership.
</p>
</div>
</body>
</html>