summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dash/css/dash.css22
-rw-r--r--dash/header.php3
-rw-r--r--dash/help.php17
3 files changed, 42 insertions, 0 deletions
diff --git a/dash/css/dash.css b/dash/css/dash.css
index 02fed66..3e79901 100644
--- a/dash/css/dash.css
+++ b/dash/css/dash.css
@@ -313,3 +313,25 @@ h3 a:hover, h4 a:hover {
margin: 0;
text-align: center;
}
+.box {
+ width: 550px;
+ margin: 2em auto;
+ border-radius: 5px;
+ background-color: #ffffff;
+ box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
+ padding: 1em;
+}
+.cbox {
+ text-align: center;
+}
+.box h1, .box h3, .box h4, .box p {
+ margin: 0.125em auto;
+}
+.box .hr {
+ height: 1px;
+ background-color: #eeeeee;
+ margin: 0.75em auto;
+}
+.cbox .hr {
+ width: 90%;
+}
diff --git a/dash/header.php b/dash/header.php
index 47b8aed..145180f 100644
--- a/dash/header.php
+++ b/dash/header.php
@@ -40,6 +40,9 @@ foreach ($navtitles as $k => $title) {
<a href="<?=$b_config['base_url'].'dash/profile.php';?>">
<span class="navspan"><?=htmlentities($b_user['name']);?>&nbsp;&#x25be;</span>
<ul class="subnav">
+ <a href="<?=$b_config['base_url'].'dash/profile.php';?>">
+ <li><span class="navspan">Profile</span></li>
+ </a>
<a href="<?=$b_config['base_url'].'dash/settings.php';?>">
<li><span class="navspan">Settings</span></li>
</a>
diff --git a/dash/help.php b/dash/help.php
new file mode 100644
index 0000000..db8c9c7
--- /dev/null
+++ b/dash/help.php
@@ -0,0 +1,17 @@
+<?php
+define('HEIRARCHY', 1);
+
+require('dash_common.php');
+$title = 'Help / Bulletin';
+require('header.php');
+?>
+ <div class="box cbox">
+ <h1>Reed</h1>
+ <p>Write this page, hoe.</p>
+ <div class="hr"></div>
+ <h4>Child Abuse Hotline</h4>
+ <p>If Reed has abused or molested you in any way, shape, or form, please let us know immediately.</p>
+ </div>
+<?php
+require('footer.php');
+?>