-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisclaimer.php
54 lines (42 loc) · 1.69 KB
/
disclaimer.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>.:: Welcome to ltweet.com ::.</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link rel="stylesheet" href="css/default.css" type="text/css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-21972831-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<?php //Showing applications page
include_once('common_design.php');
$common_design = new commonDesign();
?>
<!-- Main Menu -->
<?php echo $common_design->topMenu() ?>
<div id="main-container">
<!-- Right Column -->
<?php echo $common_design->rightColumn(false, false) ?>
<div id="left">
<h1 class="info-title">Disclaimer</h1>
<div class="info-text">
Ltweet is an application that makes use of the Twitter API. This
service is provided for your use completely free of charge.
<br /><br />
No tweets are ever stored on our servers. We are a gateway for you
to use your Twitter account with the enhancement Ltweet
provides.
</div>
</div>
<div style="clear:both;height:30px;"></div>
</div>
</body>
</html>