File: redirect-target.php

package info (click to toggle)
jquery-mobile 1.4.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 15,808 kB
  • sloc: makefile: 42; php: 18
file content (30 lines) | stat: -rw-r--r-- 626 bytes parent folder | download | duplicates (2)
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
<?php
	sleep(2);
?>
<!DOCTYPE html>
<html>
<head>

  <title>Redirect Target</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile-1.4.5.min.css">
  <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
  <script src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>

</head>
<body>
<div data-role="page">
	<div data-role="header">
		<h1>Redirect Target</h1>
	</div>
	<div role="main" class="ui-content">
		<p>Content</p>
		<tt>
		</tt>
	</div>

</div>
</body>
</html>