-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (83 loc) · 4.53 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
<!DOCTYPE html>
<html>
<head>
<!--chrome-->
<!--<meta name="viewport" content="initial-scale=1.5, user-scalable=no, width=device-width" />-->
<!--native browser-->
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width,user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="js/ol/theme/default/style.css" type="text/css">
<link rel="stylesheet" href="js/jquery/jquery.mobile-1.3.2.min.css" type="text/css">
<link rel="stylesheet" href="css/Dorothea.css" type="text/css">
<script type="text/javascript" src="js/jquery/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/jquery/jquery.mobile-1.3.2.min.js"></script>
<script type="text/javascript" src='js/proj4js/proj4js-compressed.js'></script>
<script type="text/javascript" src="js/ol/OpenLayers.js"></script>
<script type="text/javascript" src="js/Dorothea.js"></script>
<title>Dorothea</title>
</head>
<body onLoad="startup()">
<div data-role="page" id="mappage">
<div data-role="header" data-nobackbtn="true" data-fixed="true">
<a href="#mappage" data-icon="arrow-l">Portaal</a>
<a id="lnkDialog" href="#popupLogin" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-icon="check" data-theme="a" data-transition="flip">Email opgeven</a>
<h1 style="text-align: left; margin: 11px">Dorothea</h1>
</div>
<div id="map" data-role="content" style="padding: 0;">
</div>
<div data-role="popup" id="popupMenu" data-theme="a">
<div data-role="popup" id="popupLogin" data-theme="a" class="ui-corner-all">
<form>
<div style="padding:10px 20px;">
<h3>Gelieve een email adres op te geven in de url!</h3>
<button type="submit" data-theme="b" data-icon="check">Ok</button>
</div>
</form>
</div>
</div>
<div data-role="footer" data-fixed="true" style="text-align: center; padding: 5px 0;">
<a href="#survey" data-icon="search" data-role="button">Verslag opmaken</a>
<a href="#" id="locate" data-role="button" data-icon="locate" data-iconpos="right" >GPS</a>
</div>
<div id="navigation" data-role="controlgroup" data-type="vertical">
<a href="#" data-role="button" data-icon="plus" id="plus" data-iconpos="notext"></a>
<a href="#" data-role="button" data-icon="minus" id="minus" data-iconpos="notext"></a>
</div>
</div>
<div data-role="page" id="survey">
<div data-role="header" data-position="fixed">
<a href="#mappage" data-icon="arrow-l">Terug</a>
<h1 style="text-align: center; margin: 11px">Nieuw verslag</h1>
</div>
<div data-role=content>
<form enctype="multipart/form-data" action="upload.php" method="POST" data-ajax="false">
<ul id="info" data-role="listview" data-inset="true">
</ul>
<h3>Inhoud</h3>
<textarea id="usertext" name="usertext"></textarea>
<div class="hiddenfile">
<input type="file" name="userfile" accept="image/*;capture=camera"/>
<input type="text" name="ident8" id="ident8">
<input type="text" name="email" id="email">
<input type="text" name="refpt" id="refpt">
<input type="text" name="lambert72" id="lambert72">
<input type="text" name="lambert72lon" id="lambert72lon">
<input type="text" name="lambert72lat" id="lambert72lat">
<input type="text" name="wgs84lon" id="wgs84lon">
<input type="text" name="wgs84lat" id="wgs84lat">
<input type="text" name="wgs84" id="wgs84">
</div>
<button id="chooseFile">Bijlage</button>
<div id="content"></div>
<input type="hidden" name="MAX_FILE_SIZE" value="512000000" />
<h3>Opties</h3>
<label for=mail>Verslag doormailen?</label>
<input type=checkbox id=mail name=checkb_mail />
<label for=geoloket>Verslag inladen in mijn geoloket?</label>
<input type=checkbox id=geoloket name=checkb_geoloket />
<input type="submit" value="Send File" />
</form>
</div>
</div>
</body>
</html>