-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.php
61 lines (48 loc) · 2.2 KB
/
base.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
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>tured.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="js/jquery.mobile-1.2.1.css" />
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/jquery.mobile-1.2.1.js"></script>
</head>
<style>
.nav-glyphish-example .ui-btn .ui-btn-inner { padding-top: 40px !important; }
.nav-glyphish-example .ui-btn .ui-icon { width: 30px!important; height: 30px!important; margin-left: -15px !important; box-shadow: none!important; -moz-box-shadow: none!important; -webkit-box-shadow: none!important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
#chat .ui-icon { background: url(glyphish-icons/119-piggy-bank.png) 50% 50% no-repeat; }
#email .ui-icon { background: url(glyphish-icons/06-magnify.png) 50% 50% no-repeat;}
#login .ui-icon { background: url(glyphish-icons/30-key.png) 50% 50% no-repeat; }
#beer .ui-icon { background: url(glyphish-icons/139-flags.png) 50% 50% no-repeat; }
#coffee .ui-icon { background: url(glyphish-icons/192-credit-card.png) 50% 50% no-repeat;}
#skull .ui-icon { background: url(glyphish-icons/17-bar-chart.png) 50% 50% no-repeat; }
</style>
<body>
<!-- Start of first page: #one -->
<div data-role="page">
<div data-role="header">
<a href="index.html" data-icon="delete">Salir</a>
<h1>TuRed.com</h1>
<a href="index.html" data-icon="gear">Mi Cuenta</a>
<div class="ui-body-d ui-body">
<div data-role="navbar" class="nav-glyphish-example" data-grid="d" >
<ul>
<li><a href="#" id="chat" data-icon="custom">Registrar Compra</a></li>
<li><a href="#" id="email" data-icon="custom">Consultas</a></li>
<li><a href="#" id="skull" data-icon="custom">Reportes</a></li>
<li><a href="#" id="beer" data-icon="custom">Campañas</a></li>
<li><a href="#" id="coffee" data-icon="custom">Créditos</a></li>
</ul>
</div><!-- /navbar -->
</div></div>
<div data-role="content">
</div><!-- /content -->
<div data-role="footer" class="footer-docs" data-theme="b" align="center">
<p class="jqm-version"></p>
<p>tured.com 2013</p>
</div>
</div>
<!-- /page -->
</body>
</html>