Subversion Repositories eFlore/Applications.cel

Rev

Rev 2996 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2786 mathias 1
<!DOCTYPE html>
2
<html>
3
	<head>
4
		<title>CEL Simplified Input</title>
5
 
6
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
7
		<meta http-equiv="Content-style-type" content="text/css" />
8
		<meta http-equiv="Content-script-type" content="text/javascript" />
9
		<meta http-equiv="Content-language" content="fr" />
10
 
11
		<meta name="revisit-after" content="15 days" />
12
		<meta name="robots" content="index,follow" />
13
		<meta name="author" content="Tela Botanica" />
14
		<meta name="keywords" content="Tela Botanica, CEL" />
15
		<meta name="description" content="Simplified input widget for the CEL" />
16
 
17
		<!-- OpenGraph pour Facebook, Pinterest, Google+ -->
18
		<meta property="og:type" content="website" />
19
		<meta property="og:title" content="Quick observation input" />
20
		<meta property="og:site_name" content="Tela Botanica" />
21
		<meta property="og:description" content="Submit and share easily your wild plants observations using the Carnet en Ligne input widget (License: CC-BY-SA)" />
2993 mathias 22
		<meta property="og:image" content="https://resources.tela-botanica.org/tb/img/256x256/carre_englobant.png" />
2786 mathias 23
		<meta property="og:image:type" content="image/png" />
24
		<meta property="og:image:width" content="256" />
25
		<meta property="og:image:height" content="256" />
26
		<meta property="og:locale" content="fr_FR" />
27
 
28
		<!-- Viewport Mobile -->
29
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
30
 
31
		<!-- Favicones -->
2993 mathias 32
		<link rel="shortcut icon" type="image/x-icon" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
2786 mathias 33
 
34
		<!-- Javascript : bibliothèques -->
35
		<!-- Google Map v3 -->
3037 mathias 36
		<script type="text/javascript" src="https://maps.google.com/maps/api/js?key=<?php echo $cleGoogleMaps; ?>&language=fr&amp;region=FR"></script>
2786 mathias 37
		<!-- Jquery -->
2993 mathias 38
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/1.11.1/jquery-1.11.1.min.js"></script>
2786 mathias 39
		<!-- Jquery UI : nécessaire pour le minicalendrier et l'auto-complétion -->
2993 mathias 40
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/jquery-ui/1.11.0/js/jquery-ui.min.js"></script>
41
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/jquery-ui/1.11.0/js/datepicker-fr.js"></script>
2786 mathias 42
		<!-- Jquery Plugins -->
43
		<!-- Jquery Validate : nécessaire pour la validation des formulaires -->
2993 mathias 44
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/validate/1.11.1/jquery.validate-patched.min.js"></script>
45
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/validate/1.11.1/additional-methods.min.js"></script>
46
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/validate/1.11.1/messages_fr.js"></script>
2786 mathias 47
		<!-- Jquery Form :nécessaire pour l'upload des images -->
2993 mathias 48
		<script type="text/javascript" src="https://resources.tela-botanica.org/jquery/form/3.51/jquery.form.min.js"></script>
2786 mathias 49
		<!-- Bootstrap -->
2993 mathias 50
		<script type="text/javascript" src="https://resources.tela-botanica.org/bootstrap/2.3.2/js/bootstrap.min.js"></script>
2786 mathias 51
 
52
		<!-- Javascript : appli saisie -->
53
		<script type="text/javascript" src="<?=$url_base?>modules/saisie/squelettes/defaut/js/WidgetSaisie.js"></script>
54
		<script type="text/javascript">
55
		//<![CDATA[
56
           $(document).ready(function() {
57
				// OMG un modèle objet !!
58
				var widget = new WidgetSaisie();
59
 
60
				// La présence du parametre 'debug' dans l'URL enclenche le débogage
61
				widget.debug = <?=isset($_GET['debug']) ? 'true' : 'false'?>;
62
				// La présence du parametre 'html5' dans l'URL enclenche les fonctions avancées HTML5
63
				widget.html5 = <?=isset($_GET['html5']) ? 'true' : 'false'?>;
64
				// Mot-clé du widget/projet
65
				widget.tagProjet = "WidgetSaisie";
66
				// Mots-clés à ajouter aux images
67
				widget.tagImg = "<?=isset($_GET['tag-img']) ? $_GET['tag-img'] : ''?>";
68
				widget.separationTagImg = "<?= isset($_GET['motcle']) && isset($_GET['tag-img']) ? ',' : '' ?>";
69
				widget.tagImg = <?=isset($_GET['motcle']) ? "'".$_GET['motcle']."' + widget.separationTagImg + widget.tagImg" : 'widget.tagImg' ?>;
70
				// Mots-clés à ajouter aux observations
71
				widget.tagObs = "<?=isset($_GET['tag-obs']) ? $_GET['tag-obs'] : ''?>";
72
				widget.separationTagObs = "<?= isset($_GET['projet']) && isset($_GET['tag-obs']) ? ',' : '' ?>";
73
				widget.tagObs = <?=isset($_GET['projet']) ? "'".$_GET['projet']."' + widget.separationTagObs + widget.tagObs" : 'widget.tagObs' ?>;
74
				// Précharger le formulaire avec les infos d'une observation
75
				widget.obsId = "<?=isset($_GET['id-obs']) ? $_GET['id-obs'] : ''?>";
76
				// URL du web service réalisant l'insertion des données dans la base du CEL.
77
				widget.serviceSaisieUrl = "<?=$url_ws_saisie?>";
78
				// URL du web service permettant de récupérer les infos d'une observation du CEL.
79
				widget.serviceObsUrl = "<?=$url_ws_obs?>";
80
				// Code du référentiel utilisé pour les nom scientifiques.
81
				widget.nomSciReferentiel = "<?=$ns_referentiel?>";
82
				// Indication de la présence d'une espèce imposée
83
				widget.especeImposee = "<?=$espece_imposee; ?>";
84
				// Tableau d'informations sur l'espèce imposée
85
				widget.infosEspeceImposee = <?=$infos_espece; ?>;
86
				// Nombre d'élément dans les listes d'auto-complétion
87
				widget.autocompletionElementsNbre = 20;
88
				// Indication de la présence d'un référentiel imposé
89
				widget.referentielImpose = "<?=$referentiel_impose; ?>";
90
				// URL du web service permettant l'auto-complétion des noms scientifiques
91
				widget.serviceAutocompletionNomSciUrl = "<?=$url_ws_autocompletion_ns?>?"+
92
					"masque={masque}&"+
93
					"recherche=etendue&"+
94
					"retour.champs=famille,nom_retenu,nom_retenu_complet,num_taxonomique,nom_retenu.id&"+
95
					"ns.structure=au"+"&"+
96
					"navigation.limite=" + widget.autocompletionElementsNbre;
97
				// Squelette d'URL du web service permettant l'auto-complétion des noms scientifiques
98
				widget.serviceAutocompletionNomSciUrlTpl = "<?=$url_ws_autocompletion_ns_tpl?>?"+
99
					"masque={masque}&"+
100
					"recherche=etendue&"+
101
					"retour.champs=famille,nom_retenu,nom_retenu_complet,num_taxonomique,nom_retenu.id&"+
102
					"retour.tri=alpharet&"+ // tri "à la CeL"
103
					"ns.structure=au"+"&"+
104
					"navigation.limite=" + widget.autocompletionElementsNbre;
105
				// Nombre d'observations max autorisé avant transmission
106
				widget.obsMaxNbre = 10;
107
				// Durée d'affichage en milliseconde des messages d'informations
108
				widget.dureeMessage = 15000;
109
				// Squelette d'URL du web service de l'annuaire.
110
				widget.serviceAnnuaireIdUrl = "<?=$url_ws_annuaire?>";
111
				// Squelette d'URL du web service d'eFlore fournissant les noms de communes.
2996 mathias 112
				widget.serviceNomCommuneUrl = "https://api.tela-botanica.org/service:eflore:0.1/osm/nom-commune?lon={lon}&lat={lat}";
2786 mathias 113
				// Squelette d'URL du web service d'eFlore fournissant les noms de communes hors de France (localisation approximative).
2996 mathias 114
				widget.serviceNomCommuneUrlAlt = "https://api.tela-botanica.org/service:eflore:0.1/wikipedia/nom-commune?lon={lon}&lat={lat}&nbre=1";
2786 mathias 115
				// URL du marqueur à utiliser dans la carte Google Map
116
				widget.googleMapMarqueurUrl = "<?=$url_base?>modules/saisie/squelettes/defaut/img/marqueurs/epingle.png";
117
				// URL de l'icône du chargement en cours
118
				widget.chargementIconeUrl = "<?=$url_base?>modules/saisie/squelettes/defaut/img/icones/chargement.gif";
119
				// URL de l'icône du chargement en cours d'une image
120
				widget.chargementImageIconeUrl = "<?=$url_base?>modules/saisie/squelettes/defaut/img/icones/chargement-image.gif";
121
				// URL de l'icône du calendrier
122
				widget.calendrierIconeUrl = "<?=$url_base?>modules/saisie/squelettes/defaut/img/icones/calendrier.png";
123
				// URL de l'icône pour une photo manquante
124
				widget.pasDePhotoIconeUrl = "<?=$url_base?>modules/saisie/squelettes/defaut/img/icones/pasdephoto.png";
125
 
126
				// Initialisation du bousin
127
				widget.init();
128
			});
129
		//]]>
130
		</script>
131
 
132
		<!-- CSS -->
2993 mathias 133
		<link href="https://resources.tela-botanica.org/jquery/jquery-ui/1.11.0/css/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" media="screen" />
134
		<link href="https://resources.tela-botanica.org/bootstrap/2.0.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="screen" />
135
		<link href="https://resources.tela-botanica.org/bootstrap/2.0.2/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css" media="screen" />
2786 mathias 136
		<link href="<?=$url_base?>modules/saisie/squelettes/defaut/css/<?=isset($_GET['style']) ? $_GET['style'] : 'defaut'?>.css" rel="stylesheet" type="text/css" media="screen" />
137
 
138
		<script>
139
		  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
140
		  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
141
		  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
142
		  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
143
 
144
		  ga('create', 'UA-20092557-1', 'auto');
145
		  ga('require', 'displayfeatures');
146
		  ga('send', 'pageview');
147
 
148
		</script>
149
	</head>
150
 
151
	<body data-spy="scroll">
152
		<div class="container">
153
			<div class="row-fluid">
154
				<div class="span6 page-header">
155
					<div class="row">
156
						<div class="span6">
157
							<h1>
158
								<?php if($logo != 'defaut' && $logo != '0') { ?>
159
									<img id="logo-titre" class="span1" src="<?= $logo ?>" alt="Logo" />
160
								<?php } else if($logo == 'defaut') { ?>
2993 mathias 161
									<img id="logo-titre" class="span1" src="https://resources.tela-botanica.org/tb/img/256x256/logo_sans_mots.png" alt="Tela Botanica" />
2786 mathias 162
								<?php } ?>
163
								<?php if($titre != 'defaut') { ?>
164
									<?= $titre; ?>
165
								<?php } else { ?>
166
									Quick observations input
167
								<?php } ?>
168
							</h1>
169
						</div>
170
					</div>
171
					<div class="row">
172
						<div class="span6">
173
							<p>
174
								This tool allows you to share your observations in a simple way with the
2874 mathias 175
								<a target="_blank" href="http://www.tela-botanica.org/site:accueil">Tela Botanica network</a> (under <a target="_blank" href="http://www.tela-botanica.org/page:licence?langue=fr">CC-BY-SA license</a>).
2786 mathias 176
								Make sure to identify yourself so that you can later find and manage your data in
2874 mathias 177
								<a target="_blank" href="http://www.tela-botanica.org/appli:cel?lang=en">your "Carnet en Ligne" (online notebook)</a>.
2799 mathias 178
								Create up to 10 observations (with max 10MB images) then sare them using the 'share' button.
2874 mathias 179
								They will appear immediatly on the <a target="_blank" href="http://www.tela-botanica.org/site:botanique">maps and photo galleries </a> on the website.
2786 mathias 180
							</p>
181
							<p class="discretion">
182
								For any question on remark,
183
								<a href="<?= $url_remarques ?>?lang=en&service=cel&pageSource=<?php echo urlencode('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']); ?>"
184
								  target="_blank"
185
								  onclick="javascript:window.open(this.getAttribute('href'), 'Tela Botanica - Remarques', config='height=700, width=640, scrollbars=yes, resizable=yes'); return false;">
186
								  contact us</a>
187
 
188
							</p>
189
							<p class="discretion">
190
								Once you get familiar with the interface, you can click this button to disable help.
191
								<button id="btn-aide" class="btn btn-mini btn-success">
192
									<span class="icon-question-sign icon-white"></span>
193
									<span id="btn-aide-txt" >Disable help</span>
194
								</button>
195
							</p>
196
						</div>
197
					</div>
198
				</div>
199
 
200
				<div class="span6">
201
					<div class="well">
202
						<h2>Observer</h2>
203
						<form id="form-observateur" action="#" class="" autocomplete="on">
204
							<div class="row-fluid">
205
								<div class="span6 has-tooltip" data-placement="right"
206
									title="Enter the email address you used to sign-up at Tela Botanica.
207
										No problem if you don't have an account yet, you can sign-up later.
208
										Some more information will be asked: first name and name">
209
									<label for="courriel"
210
										title="plase enter your email address.">
211
										<strong class="obligatoire">*</strong> Email address
212
									</label>
213
									<div class="input-prepend">
214
										<span class="add-on"><i class="icon-envelope"></i></span>
215
										<input id="courriel" class="input-large" name="courriel" type="text"/>
216
										<input id="id_utilisateur" name="id_utilisateur" type="hidden"/>
217
									</div>
218
								</div>
219
								<div id="zone-courriel-confirmation" class="span6 hidden">
220
									<label for="courriel_confirmation"
221
										title="Please confirm your email address.">
222
										<strong class="obligatoire">*</strong> Email address (confirmation)
223
									</label>
224
									<div class="input-prepend">
225
										<span class="add-on">
226
											<i class="icon-envelope"></i>
227
										</span><input id="courriel_confirmation" class="input-large" name="courriel_confirmation" type="text"/>
228
									</div>
229
								</div>
230
							</div>
231
							<div id="zone-prenom-nom" class="row-fluid hidden">
232
								<div class="span6">
233
									<label for="prenom">First name</label>
234
									<div>
235
										<input id="prenom" name="prenom" class="span3" type="text"/>
236
									</div>
237
								</div>
238
								<div class="span6">
239
									<label for="nom">Name</label>
240
									<div>
241
										<input id="nom" name="nom"  class="span3" type="text"/>
242
									</div>
243
								</div>
244
							</div>
245
						</form>
246
					</div>
247
				</div>
248
			</div>
249
			<!-- Messages d'erreur du formulaire-->
250
			<div class="row">
251
				<div class="zone-alerte span6 offset3">
252
					<div id="dialogue-bloquer-copier-coller" class="alert alert-info alert-block" style="display:none;">
253
						<a class="close">×</a>
254
						<h4 class="alert-heading">Information : copy/paste</h4>
255
						<p>
256
							Please do not copy / paste your email address.<br/>
257
							Double input allows to avoid mistakes.
258
						</p>
259
					</div>
260
					<div id="dialogue-courriel-introuvable" class="alert alert-info alert-block" style="display:none;">
261
						<a class="close">×</a>
262
						<h4 class="alert-heading">Information : cannot find your email</h4>
263
						<p>
264
							You don't seem to have an account associated to this email address.<br/>
265
							Plese complete the following fields or type the email associated to your account.<br/>
266
							To find your observations later in the <a href="http://www.tela-botanica.org/appli:cel?lang=en">"Carnet en ligne" (Online notebook)</a>,
267
							you will have to <a href="http://www.tela-botanica.org/page:inscription">sign-up to Tela Botanica</a>.
268
						</p>
269
					</div>
270
					<div id="dialogue-google-map" class="alert alert-info alert-block" style="display: none;">
271
						<a class="close">×</a>
272
						<h4 class="alert-heading">Information about Google Maps</h4>
273
						<div class="contenu"></div>
274
					</div>
275
				</div>
276
			</div>
277
			<div class="row-fluid">
278
				<div class="span12">
279
					<div class="well">
280
						<div class="row-fluid">
281
							<div class="span6">
282
								<div>
283
									<div class="row-fluid">
284
										<div class="span12">
285
											<h2>Location of the observation</h2>
286
										</div>
287
									</div>
288
									<div class="row-fluid">
289
										<div class="span4">
290
											<label for="map_canvas" title="Please localize the observation">
291
												Geolocalization
292
											</label>
293
										</div>
294
										<div class="span8 droite">
295
											<form id="form-carte-recherche" class="form-search form-horizontal" action="#" >
296
												<div class="control-group">
297
													<label for="carte-recherche">Search</label>
298
													<input id="carte-recherche" class="search-query has-tooltip" type="text" value=""
299
														title="Allows to center the map on the requested location."
300
														placeholder="Ex: France, Paris, Rue de Rivoli..."/>
301
												</div>
302
											</form>
303
										</div>
304
									</div>
305
									<div class="row-fluid">
306
										<div class="span12">
307
											<div id="map-canvas" class="has-tooltip"
308
												title="You can click on the map to move the marker representing
309
													your station, or drag-n-drop it on the desired location."></div>
310
										</div>
311
									</div>
312
									<div class="row-fluid">
313
										<label for="coordonnees-geo" class="span7">
314
											<a href="#" class="afficher-coord">Display</a>
315
											<a href="#" class="afficher-coord" style="display:none;">Hide</a>
316
											the geographical coordinates
317
											<span id="lat-lon-info" class="info has-tooltip"
318
												title="World geodesic system, 1984 revision - Non-projected coordinates">
319
												(WGS84)
320
											</span>
321
										</label>
322
										<div id="info-commune" class="span5">
323
								    		<span for="marqueur-commune">City / area : </span>
324
								    		<span id="marqueur-commune">
325
								    			<span id="commune-nom" class="commune-info"></span>
326
								    			(<span id="commune-code-insee" class="commune-info has-tooltip"
327
								    				title="INSEE city code (France)"></span>)
328
								    		</span>
329
							    		</div>
330
									</div>
331
									<form id="form-station" class="control-group" action="#" enctype="multipart/form-data" autocomplete="on">
332
										<div id="coordonnees-geo" class="well" style="display:none;">
333
											<div class="row-fluid form-inline">
334
												<div id="coord-lat" class="span4">
335
													<label for="latitude">Latitude</label>
336
													<div>
337
														<input id="latitude" class="input-mini" name="latitude" type="text" value=""/>
338
													</div>
339
												</div>
340
												<div id="coord-lng" class="span4">
341
													<label for="longitude">Longitude</label>
342
													<div>
343
														<input id="longitude" class="input-mini" name="longitude" type="text" value=""/>
344
													</div>
345
												</div>
346
												<div class="span1">
347
													<div>
348
														<input id="geolocaliser" type="button" value="Show on the map"
349
															class="has-tooltip"
350
															title="Centers the map on the specified coordinates."/>
351
													</div>
352
												</div>
353
									    	</div>
354
										</div>
355
										<div class="row-fluid">
356
											<div class="span4 has-tooltip"
357
												title="Location name, more precise than the city, used locally." >
358
												<label for="lieudit">Place</label>
359
												<div>
360
													<input type="text" id="lieudit" class="span2" name="lieudit"/>
361
												</div>
362
											</div>
363
											<div class="span4 has-tooltip"
364
												title="Precise location of the observation describing a homogeneous ecological unit (ex: the meadow behind the house)." >
365
												<label for="station">Station</label>
366
												<div>
367
													<input type="text" id="station" class="span2" name="station"/>
368
												</div>
369
											</div>
370
											<div class="span4 has-tooltip"
371
												title="Environment type (ex: humid prairie).">
372
												<label for="milieu">Environment</label>
373
												<div>
374
													<input type="text" id="milieu" class="span2" name="milieu" />
375
												</div>
376
											</div>
377
										</div>
378
									</form>
379
								</div>
380
							</div>
381
							<div class="span6">
382
								<form id="form-obs" action="#" autocomplete="on">
383
									<h2>Observation</h2>
384
									<?php if(!$referentiel_impose && !$espece_imposee) : ?>
385
										<div class="row-fluid">
386
											<div class="has-tooltip"
387
												title="Select the referential assocaited to your observation">
388
												<label for="referentiel" title="Réferentiel">
389
													Referential
390
												</label>
391
												<span class="input-prepend">
392
													<span id="referentiel-icone" class="add-on"><i class="icon-book"></i></span>
393
													<select id="referentiel" autocomplete="off">
2929 delphine 394
														<option value="bdtfxr" selected="selected" title="Tracheophytes of metropolitan France">Metropolitan France (short index)</option>
395
														<option value="bdtfx" title="Tracheophytes of metropolitan France">Metropolitan France (BDTFX)</option>
2786 mathias 396
														<option value="bdtxa" title="Tracheophytes of french Antilles">French Antilles (BDTXA)</option>
2987 delphine 397
														<option value="aublet" title="Guyane">Guyana (AUBLET2)</option>
398
														<option value="florical" title="Nouvelle-Calédonie">New-Caledonia (FLORICAL)</option>
2786 mathias 399
														<option value="bdtre" title="Tracheophytes of La Réunion">Réunion Island (BDTRE)</option>
400
														<option value="isfan" title="Northern Africa">Northern Africa (ISFAN)</option>
401
														<option value="apd" title="Western and central Africa">Western and central Africa (APD)</option>
402
														<option value="lbf" title="Lebanon">Lebanon (LBF)</option>
403
														<option value="autre" title="Other/Unknown">Other/Unknown</option>
404
													</select>
405
												</span>
406
											</div>
407
										</div>
408
									<?php endif; ?>
409
									<div class="row-fluid">
410
										<div class="span4 has-tooltip"
411
											title="Click the calendar icon to select the date.">
412
											<label for="date" title="Please type the date of observation, using dd/mm/yyyy format">
413
												Observation date
414
											</label>
415
											<div class="input-prepend">
416
												<span id="date-icone" class="add-on"></span><input id="date"
417
													class="input-small" name="date" type="text"
418
													placeholder="dd/mm/yyyy" />
419
											</div>
420
										</div>
421
										<div id="taxon-input-groupe" class="span8 has-tooltip"
422
											title="Select a species in the list to link
423
												the name to the selected referential. If you wish you can
424
												also specify a name that is not in any referential
425
												(Ex. : 'purple flower' or 'viola sinensis???')." >
426
											<label for="taxon" title="Choose a species">
427
												<strong class="obligatoire">*</strong>
428
												Species <?= $referentiel_impose ? '('.$ns_referentiel.')' : '' ?> <em>(or clue about the plant)</em>
429
											</label>
430
											<div class="input-prepend">
431
												<span class="add-on">
432
													<i class="icon-leaf"></i>
433
												</span><input type="text" id="taxon" name="taxon" value="<?= $nom_sci_espece_defaut; ?>" />
434
											</div>
435
										</div>
436
									</div>
437
									<div class="row-fluid">
438
										<div class="span12">
439
											<label for="notes">Comments</label>
440
											<div>
441
												<textarea id="notes" class="span6" rows="7" name="notes"
442
													placeholder="you can add comments and notes to your observation (altitude, plant size...)"></textarea>
443
											</div>
444
										</div>
445
									</div>
446
								</form>
447
								<form id="form-upload" class="form-horizontal" action="<?= $url_ws_upload ?>"
448
									method="post" enctype="multipart/form-data">
449
									<h2>Image(s) of this plant</h2>
450
									<strong>Add an image</strong>
451
									<p class="miniature-info" class="discretion help-inline">Photos must be in JPEG format and must not exceed 5MB each.</p>
452
									<div id ="photos-conteneur">
453
										<input type="file" id="fichier" name="fichier" accept="image/jpeg" />
454
										<input type="hidden" name="MAX_FILE_SIZE" value="5242880"/>
455
										<div id="miniatures">
456
										</div>
457
										<p class="miniature-msg" class="span12">&nbsp;</p>
458
									</div>
459
								</form>
460
							</div>
461
							<div class="row-fluid">
462
								<div class="span12 centre has-tooltip"
463
									title="Once the fields are filled, click this button to
464
										add your observation to the to-be-transmitted list.">
465
									<button id="ajouter-obs" class="btn btn-primary btn-large" type="button">
466
										Create
467
									</button>
468
								</div>
469
							</div>
470
						</div>
471
					</div>
472
				</div>
473
			</div>
474
			<!-- Messages d'erreur du formulaire-->
475
			<div class="row">
476
				<div class="zone-alerte span6 offset3">
477
					<div id="dialogue-bloquer-creer-obs" class="alert alert-warning alert-block" style="display: none;">
478
						<a class="close">×</a>
479
						<h4 class="alert-heading">Information : 10 observations maximum</h4>
480
						<p>
481
							You just added your 10th observation.<br/>
482
							To add some more, you need to transmit the first 10 by clicking the button below.
483
						</p>
484
					</div>
485
				</div>
486
				<div class="zone-alerte span6 offset3">
487
					<div id="dialogue-form-invalide" class="alert alert-warning alert-block" style="display: none;">
488
						<a class="close">×</a>
489
						<h4 class="alert-heading">Information : fields with errors</h4>
490
						<p>
491
							Some of the form fields contain errors.<br/>
492
							Please check your data.
493
						</p>
494
					</div>
495
				</div>
496
			</div>
497
			<!-- Affiche le tableau récapitualif des observations ajoutées -->
498
			<div id="zone-liste-obs" class="row-fluid">
499
				<div class="span12">
500
					<div class="well">
501
						<div class="row-fluid">
502
							<div class="span8">
503
								<h2>Observations to be transmitted : <span class="obs-nbre">0</span></h2>
504
							</div>
505
							<div class="span4 droite">
506
								<button id="transmettre-obs" class="btn btn-primary btn-large has-tooltip"
507
									type="button" disabled="disabled"
508
									title="Adds the observations below to your Carnet en Ligne (Online notebook) and makes them public.">
509
									Transmit
510
								</button>
511
							</div>
512
						</div>
513
						<div id="liste-obs" ></div>
514
						<div class="row">
515
							<div class="zone-alerte span6 offset3">
516
								<div id="dialogue-zero-obs" class="alert alert-block" style="display: none;">
517
									<a class="close">×</a>
518
									<h4 class="alert-heading">Warning : no observation</h4>
519
									<p>Please add observations before transmission.</p>
520
								</div>
521
 
522
								<div id="dialogue-obs-transaction-ok" class="alert alert-success alert-block" style="display: none;"">
523
									<a class="close">×</a>
524
									<h4 class="alert-heading">Information : transmitting observations</h4>
525
									<div class="alert-txt"></div>
526
								</div>
527
 
528
								<div id="dialogue-obs-transaction-ko" class="alert alert-error alert-block" style="display: none;">
529
									<a class="close">×</a>
530
									<h4 class="alert-heading">Error while transmitting observations</h4>
531
									<div class="alert-txt"></div>
532
								</div>
533
							</div>
534
						</div>
535
 
536
					</div>
537
				</div>
538
			</div>
539
 
540
			<footer class="row-fluid">
541
				<p class="span12">&copy; Tela Botanica 2015</p>
542
			</footer>
543
 
544
			<!-- Fenêtres modales -->
545
			<div id="chargement" class="modal-fenetre" style="display:none;">
546
				<div id="chargement-centrage" class="modal-contenu">
547
					<div class="progress progress-striped active">
548
			 			<div id="barre-progression-upload" class="bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="10" style="">
549
			    			<span class="sr-only">0/10 observations transmitted</span>
550
			  			</div>
551
					</div>
552
					<p id="chargement-txt" style="color:white;font-size:1.5em;">
553
						Transmitting observations...<br />
554
						This might take several minutes depending on the size of images and
555
						the number of observations to transmit.
556
					</p>
557
				</div>
558
			</div>
559
 
560
			<!-- Templates HTML -->
561
			<div id="tpl-transmission-ok" style="display:none;">
562
				<p class="msg">
563
					Your observations have been transmitted.<br />
564
					They can now be consulted with the different visualization tools
565
					of the Tela Botanica network (<a href="http://www.tela-botanica.org/site:botanique">eFlore</a>,
2798 mathias 566
					<a href="http://www.tela-botanica.org/appli:pictoflora">images gallery</a>,
567
					<a href="http://www.tela-botanica.org/appli:identiplante">Identiplante</a>,
2786 mathias 568
					<a href="http://www.tela-botanica.org/widget:cel:cartoPoint">maps</a>...)<br />
569
					If you wish to edit or delete them, you can find them by
570
					signing in to your <a href="http://www.tela-botanica.org/appli:cel?lang=en">"Carnet en ligne" (Online notebook)</a>.<br />
571
					Don't forget that you have to
572
					<a href="http://www.tela-botanica.org/page:inscription">sign-up to Tela Botanica</a>
573
					first, if not already done.
574
				</p>
575
			</div>
576
			<div id="tpl-transmission-ko" style="display:none;">
577
				<p class="msg">
578
					An error occured while transmitting an observation (shown in red).<br />
579
					You can try transmitting it again by clicking the "transmit" button, or delete it
580
					and transmit the others.<br />
581
					Nevertheless, the observations that do not appear in the "observations to be transmitted" list anymore, have been successfully transmitted during the previous attempt. <br />
582
					If the issue persists, you can report it to us using
583
					<a href="<?= $url_remarques ?>?lang=en&service=cel&pageSource=<?php echo urlencode('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']); ?>"
584
								  target="_blank"
585
								  onclick="javascript:window.open(this.getAttribute('href'), 'Tela Botanica - Remarques', config='height=700, width=640, scrollbars=yes, resizable=yes'); return false;">
586
								  the error reporting form</a>.
587
				</p>
588
			</div>
589
		</div>
590
	</body>
2963 killian 591
</html>