-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcsvRun.html
55 lines (50 loc) · 1.85 KB
/
csvRun.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>Settings for Importing CSV </title>
<!-- Stylesheets -->
<link rel="stylesheet" href="photon-0.1.2-dist/css/photon.min.css">
<!-- Javascript -->
</head>
<body>
<div class="window">
<!-- .toolbar-header sits at the top of your app -->
<!-- <header class="toolbar toolbar-header">
<h1 class="title">Test</h1>
</header> -->
<!-- Your app's content goes inside .window-content -->
<div class="window-content">
<div class="pane-group">
<div class="pane">
<div class="padded-more">
<form id="formsetting">
<label>All items are case sensitive, if left blank items will be set to default</label>
<div class="form-group">
<label>latitude header</label>
<input type="name" id="latform"class="form-control" placeholder="default to 'lat'">
</div>
<div class="form-group">
<label>longitude header</label>
<input type="name" id="lonform"class="form-control" placeholder="default to 'lon'">
</div>
<div class="form-group">
<label>delimiter</label>
<input type="name" id="delimiterform"class="form-control" placeholder="default to ','">
</div>
<!-- <div class="checkbox">
<label>
<input type="checkbox" id="urlcheck"> URL check
</label>
</div> -->
<div class="form-actions">
<button type="submit" class="btn btn-form btn-primary">Update Map</button>
<button id="closebutton" class="btn btn-form btn-negative">Close</button>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="runCSV.js" charset="utf-8"></script>
</body>
</html>