-
Notifications
You must be signed in to change notification settings - Fork 3
/
inbox.php
69 lines (62 loc) · 2.97 KB
/
inbox.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
include_once($_SERVER["DOCUMENT_ROOT"] . "/include/page-utils.php");
/****************************/
// Page configuration
$title = "Inbox";
// Scripts
$pageScript = "/js/pages/inbox.js";
// CSS
$pageCss = "/css/pages/inbox.css";
require($_SERVER["DOCUMENT_ROOT"] . "/include/page-top.php");
?>
<div class="sort-results">
<span class="title">Inbox</span>
<form action="#">
<div class="sa-button options">Options ∨</div>
<div class="sa-button submit">Search</div>
<input type="text" id="s-search" label="Search"/>
<div style="clear: both;"></div>
<div class="options-row">
<div class="sa-button delete-all">Delete all</div>
<div class="sa-button mark-all">Mark all as read</div>
</div>
</form>
<div style="clear: both;"></div>
</div>
<div class="inbox">
<div class="message header">
<span class="m-subject">Subject</span>
<span class="m-sender"><a href="#2" title="Visit profile">Sender</a></span>
<span class="m-time">Time</span>
<span class="m-flags">Flags</span>
<div style="clear: both;"></div>
</div>
<div class="messagearea">
<div id="message-template">
<div class="message">
<span class="m-subject">Subject</span>
<span class="m-sender"><a href="#" title="Visit profile">Sender</a></span>
<span class="m-time">Time</span>
<span class="m-flags">Flags</span>
<div style="clear: both;"></div>
</div>
<div class="message-content">
<div class="m-left">
Thanks anyway :)
<br><br>
----------------------
<br><br>
Unfortunately the CubeBomb gift shop is closed down. Sorry!
<br><br>
----------------------
<br><br>
I was going to get a little memo of CB for Christmas.
</div>
<div style="clear: both;"></div>
</div>
</div>
</div>
</div>
<?php
include($_SERVER["DOCUMENT_ROOT"] . "/include/page-end.php");
?>