Skip to content

Commit

Permalink
Commit css html
Browse files Browse the repository at this point in the history
  • Loading branch information
lechiluan committed Mar 30, 2023
1 parent 3578376 commit 62555db
Show file tree
Hide file tree
Showing 22 changed files with 6,730 additions and 0 deletions.
565 changes: 565 additions & 0 deletions Manage_Account.html

Large diffs are not rendered by default.

443 changes: 443 additions & 0 deletions Manage_Department.html

Large diffs are not rendered by default.

330 changes: 330 additions & 0 deletions QAC.html

Large diffs are not rendered by default.

399 changes: 399 additions & 0 deletions QAC_Topic.html

Large diffs are not rendered by default.

375 changes: 375 additions & 0 deletions QAC_Topic_Detail.html

Large diffs are not rendered by default.

393 changes: 393 additions & 0 deletions QAM_Ideas.html

Large diffs are not rendered by default.

952 changes: 952 additions & 0 deletions QAManager.php

Large diffs are not rendered by default.

413 changes: 413 additions & 0 deletions QAManager_Role.html

Large diffs are not rendered by default.

372 changes: 372 additions & 0 deletions Settings.html

Large diffs are not rendered by default.

610 changes: 610 additions & 0 deletions Staff.html

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions connection.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
// Connect with MySQL
$conn = mysqli_connect("localhost", "root", "", "db_ideas");
if(!$conn)
{
die("Could not connect to database");
}
else
{
echo "Connected to database";
}
?>
Loading

0 comments on commit 62555db

Please sign in to comment.