-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathui1.php
More file actions
executable file
·41 lines (32 loc) · 1.25 KB
/
ui1.php
File metadata and controls
executable file
·41 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>Welcome</title>
<?php include('./beta/includes/header.php'); ?>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>UI #1</h1>
</div><!-- /header -->
<div data-role="content">
<i>Welcome to this site</i>
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
<li><a href="javascript:alert('this is currently not available')">Item 1</a></li>
<li><a href="javascript:alert('this is currently not available')">Item 2</a></li>
<li><a href="javascript:alert('this is currently not available')">Item 3</a></li>
<li><a href="status.php">Item 4</a></li>
</ul>
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
<li><a href="javascript:alert('this is currently not available')">Item 5</a></li>
<li><a href="javascript:alert('this is currently not available')">Item 6</a></li>
<li><a href="javascript:alert('this is currently not available')">Item 7</a></li>
<li><a href="javascript:alert('this is currently not available')">Item 8</a></li>
</ul>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
</div><!-- /footer -->
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>