-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
153 lines (119 loc) · 5.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link href="style/util.css" rel="stylesheet" type="text/css">
<link href="style/headers.css" rel="stylesheet" type="text/css">
<link href="style/drawer.css" rel="stylesheet" type="text/css">
<link href="style/confirm.css" rel="stylesheet" type="text/css">
<link href="style/theme.css" rel="stylesheet" type="text/css">
<link href="style/input_areas.css" rel="stylesheet" type="text/css">
<link href="style/action_menu.css" rel="stylesheet" type="text/css">
<link href="style/progress_activity.css" rel="stylesheet" type="text/css">
<link rel="resource" type="application/l10n" href="locales/locales.ini" />
<link rel="resource" type="application/l10n" href="locales/date.ini" />
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1"/>
<title data-l10n-id="title">Emploi du temps</title>
<!-- LIBRARY LOADING -->
<script src="js/lib/l10n.js" defer></script>
<script src="js/lib/l10n_date.js" defer ></script>
<script src="js/lib/hammer.min.js" defer></script>
<script src="js/lib/ical.js" defer></script>
<script src="js/schooldata.js" defer></script>
<script src="js/event.js" defer></script>
<script src="js/nantes_fetch.js" defer></script>
<script src="js/nantes_event.js" defer></script>
<script src="js/calendar.js" defer></script>
<script src="js/nantes_calendar.js" defer></script>
<script src="js/app.js" defer></script>
<link rel="manifest" href="./manifest.webapp" />
</head>
<body role="application">
<!--
-- SIDEBAR
--
-->
<section data-type="sidebar" role="sidebar">
<header>
<menu type="toolbar">
<a href="#content"><span class="icon icon-menu">add</span></a>
</menu>
<h1 data-l10n-id="title">Emploi du temps</h1>
</header>
<nav id="sideNav">
<ul class="permanent">
<li><a data-l10n-id="addgroup" id="sideAddGroup" href="#content">Ajouter un groupe</a></li>
</ul>
</nav>
</section>
<!--
-- MAIN SECTION
--
-->
<section id="drawer" role="region">
<header>
<a href="#drawer"><span class="icon icon-menu">menu</span></a>
<menu type="toolbar">
<a href="#refresh" id="refresh" ><span class="icon icon-refresh">add</span></a>
</menu>
<h1 data-l10n-id="title">Emploi du temps</h1>
</header>
<div id="main" role="main">
<div class="planning">
<h1 class="day">
<a id="previousButton"><img src="style/img/back.png"/></a>
<span id="dayLabel"></span>
<a id="nextButton"><img src="style/img/back-rtl.png"/></a>
</h1>
<section class="current"><div data-l10n-id="init" style="font-size:16px;margin-top:16px;">Aucun groupe favori n'a été trouvé.
Afin de visualiser un emploi du temps, veuillez aller dans le menu
et séléctionner "Ajouter un groupe".</div></section>
<section class="current"></section>
</div>
</div>
</section>
<!--
-- PLANNING LIST
--
-->
<form id="planningList" role="dialog" data-type="action">
<header><span data-l10n-id="schoolChoice">Choix de l'école</span><progress id="listProgress"></progress>
<div>
<input id="planningSearch" type="search" placeholder="Search" class="slim"/><button style="top:4.2rem" id = "planningSearchReset"type="reset">Clear</button>
</div>
</header>
<menu>
</menu>
</form>
<!--
-- IDENTIFICATION FORM
--
-->
<form id="identification" role="dialog" data-type="confirm">
<section>
<h1 data-l10n-id="login">Identification</h1><!-- this heading is optional -->
<p data-l10n-id="loginMsg">Veuillez entrer vos identifiants s'il vous plait</p>
<table><tr><td><input type="text" placeholder ="login" id="login"/></td></tr>
<tr><td><input type="password" id="password" placeholder ="password"/></td></tr></table>
<input type="checkbox" id="remlogin" value="Remember credentials"/><span data-l10n-id="loginRmb">Se souvenir de l'identifiant</span><br/>
<input type="checkbox" id="rempassword" value="Remember password"/><span data-l10n-id="passwordRmb">Se souvenir du mot de passe</span>
</section>
<menu>
<button data-l10n-id="cancel" type = "button" id="idCancel">Annuler</button>
<button data-l10n-id="connect" type = "button" id = "idConnect" class="recommend">Connexion</button>
</menu>
</form>
<!--
-- Confirmation screen
--
-->
<form id="confirmation" role="dialog" data-type="confirm">
<section>
</section>
<menu>
<button data-l10n-id="cancel" type = "button" class="cancel">Annuler</button>
<button data-l10n-id="confirm" type = "button" class="recommend confirm">Confirmer</button>
</menu>
</form>
</body>
</html>