Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
Add additional pages
Browse files Browse the repository at this point in the history
These pages are not related to the functions of the app, though they
serve an important purpose.
  • Loading branch information
Ghifari160 committed May 16, 2018
1 parent 3e1f57e commit 2749a70
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
29 changes: 29 additions & 0 deletions tally_about.php
@@ -0,0 +1,29 @@
<?php require_once "app.php"; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tally.Dev</title>
<?php
recall_styles();
recall_scripts();
?>
</head>

<body>
<header class="app-header">
<?php tally_header(); ?>
</header>

<div class="app-body">
<h1>About <?php echo APP_NAME; ?></h1>
<?php
app_details(true);
?>
</div>

<div class="app-footer">
<?php tally_footer(); ?>
</div>
</body>
</html>
26 changes: 26 additions & 0 deletions tally_reports.php
@@ -0,0 +1,26 @@
<?php require_once "app.php"; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tally.Dev</title>
<?php
recall_styles();
recall_scripts();
?>
</head>

<body>
<header class="app-header">
<?php tally_header(); ?>
</header>

<div class="app-body">
<h1>Bug Report Generator</h1>
</div>

<div class="app-footer">
<?php tally_footer(); ?>
</div>
</body>
</html>

0 comments on commit 2749a70

Please sign in to comment.