-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (60 loc) · 1.4 KB
/
index.php
File metadata and controls
61 lines (60 loc) · 1.4 KB
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
<html>
<head>
<title>Index</title>
<link rel="stylesheet" href="css/style.css">
<script>
</script>
</head>
<body>
<table>
<tr>
<td colspan="2" id="pageheader">
Application Header
</td>
</tr>
<tr>
<td id="mainnav">
<div class="menuitem">menu 1</div>
<div class="menuitem">menu 2</div>
<div class="menuitem">menu 3</div>
<div class="menuitem">menu 4</div>
</td>
<td id="content">
<div id="divPageMenu">
<span class="menuitem" >page menu 1</span>
<span class="menuitem" >page menu 2</span>
<span class="menuitem" >page menu 3</span>
<input type="text" id="txtSearch" />
<span class="menuitem">search</span>
</div>
<div id="divStatus" class="status">
status message
</div>
<div id="divContent">
Content space
<span class="clickspot">click here </span>
<table id="tableExample" class="reportTable" width="100%">
<tr class="header">
<td>column1</td>
<td>column2</td>
<td>column3</td>
<td>column4</td>
</tr>
<tr class="row1">
<td>data example</td>
<td>123</td>
<td>01/01/2014</td>
<td>data</td>
</tr>
<tr class="row2">
<td>data example</td>
<td>123</td>
<td>01/01/2014</td>
<td>data</td>
</tr>
</div>
</td>
</tr>
</table>
</body>
</html>