-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend.php
More file actions
57 lines (44 loc) · 1.5 KB
/
send.php
File metadata and controls
57 lines (44 loc) · 1.5 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
<?php
if (!isset($_SESSION['Username']))
{
header("location:index.php");
exit();
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Pinchapp</title>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="jquery.mobile-1.2.0.css" />
<link rel="stylesheet" href="style.css" />
<link rel="apple-touch-icon" href="appicon.png" />
<link rel="apple-touch-startup-image" href="upstart.png">
<script src="jquery-1.8.2.min.js"></script>
<script src="jquery.mobile-1.2.0.js"></script>
</head>
<body>
<div data-role="page" id="one">
<div data-role="header">
<h1>Pinch</h1>
</div><!-- /header -->
<div data-role="content">
<h2>Send <span id="username"></span></h2>
<p> You can now pinch the image. </p>
</div><!-- /content -->
<div data-role="footer" data-id="samebar" class="nav-glyphish-example" data-position="fixed" data-tap-toggle="false">
<div data-role="navbar" class="nav-glyphish-example" data-grid="c">
<ul>
<li><a href="index.php" id="home" data-icon="custom">Home</a></li>
<li><a href="get.php" id="key" data-icon="custom">Receive</a></li>
<li><a href="send.php" id="beer" data-icon="custom" class="ui-btn-active">Send</a></li>
<li><a href="help.php" id="help" data-icon="custom">Help</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>