-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 2.18 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Reparto de Tareas • Inicio</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1" />
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" type="text/css" href="jqm-datebox.min.css" />
<link rel="stylesheet" type="text/css" href="tareas.css" />
<script src="jquery-1.8.2.min.js"></script>
<script src="jquery.mobile-1.2.0.min.js"></script>
<script type="text/javascript" src="jqm-datebox.core.min.js"></script>
<script type="text/javascript" src="jqm-datebox.mode.calbox.min.js"></script>
<script type="text/javascript" src="jquery.mobile.datebox.i18n.en_US.utf8.js"></script>
<script type="text/javascript" src="fechas.js"></script>
<script type="text/javascript" src="rutinas.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div data-role="page">
<div id="header" data-role="header">
<h1>Reparto de Tareas</h1>
<a href="configuracion.html" data-ajax="false" data-role="button" data-icon="gear">Configuración</a>
</div>
<div id="contenido" data-role="content">
<div class="ui-body ui-body-a">
<h3><div id="semana"></div></h3>
</div>
<div id="resultado" class="ui-grid-a"></div>
<fieldset class="ui-grid-a">
<div class="ui-block-a"><button type="button" id="anterior" data-theme="a" data-icon="arrow-l">Anterior</button></div>
<div class="ui-block-b"><button type="button" id="siguiente" data-theme="a" data-icon="arrow-r" data-iconpos="right">Siguiente</button></div>
</fieldset>
<button type="button" id="seleccionar" data-theme="c" data-corners="false" data-icon="grid">Seleccionar Semana</button>
<div class="ui-body">
<input id="selsemana" type="date" data-role="datebox"
data-options='{"mode": "calbox", "calShowWeek": true, "overrideCalStartDay": 1, "calWeekHigh":true, "overrideDateFormat":"%d/%m/%Y", "hideInput": "true"}'>
</div>
</div><!-- /content -->
<div id="footer" data-role="footer">
<p class="ui-title">JCA • 2012</p>
</div><!-- /header -->
</div><!-- /page -->
</body>
</html>