forked from encorelab/washago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.html
115 lines (107 loc) · 5.38 KB
/
setup.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
<!DOCTYPE html>
<html>
<head>
<title>Washago Setup Wizard</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="js/sail.js/css/sail.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/jquery.mobile-1.1.0.min.css" />
<link rel="stylesheet" href="css/setup.css" />
<script src="js/sail.js/sail.js" type="text/javascript"></script>
<script type="text/javascript">
Sail.load()
.then('js/jquery.mobile-1.1.0.min.js')
.then('js/washago.setup.js')
.then('js/toast.notify.js')
.thenRun(function() { return Sail.init(Washago.Setup); });
</script>
</head>
<body>
<!-- single page -->
<div data-role="page" id="page_run">
<!-- common header to view and add page -->
<div data-theme="b" data-role="header" data-position="fixed">
<h1>1. Select a Run...</h1>
</div>
<div data-role="fieldcontain" id="existingRuns">
<fieldset data-role="controlgroup">
<legend>Existing Runs:</legend>
<label for="runManual">Create a New Run</label>
<input type="radio" name="runSelector" id="runManual" value="0" checked="checked" />
</fieldset>
</div>
<div data-role="fieldcontain" id="manualRun">
<label for="runName">Run Name:</label>
<input type="text" data-theme="b" name="runName" id="runName" value="" placeholder="Enter a run name not listed above..." />
</div>
<div class="ui-body ui-body-b">
<fieldset class="ui-grid-b">
<div>
<a id="saveRun" data-theme="a" data-role="button" data-inline="true" data-icon="arrow-r" data-iconpos="right">Next</a>
</div>
</fieldset>
</div>
</div>
<div data-role="page" id="page_config_locations">
<div data-theme="b" data-role="header" data-position="fixed">
<h1>2. Add/Edit Locations</h1>
</div>
<div data-role="fieldcontain">
<label for="locationName">New Location:</label>
<input type="text" data-theme="b" name="locationName" id="locationName" value="" placeholder="Enter a location not listed below..." />
</div>
<div id="locationParent">
</div>
<div class="ui-body ui-body-b">
<fieldset class="ui-grid-b">
<div>
<a data-theme="b" data-rel="back" data-role="button" data-transition="slidefade" data-inline="true" data-icon="arrow-l" data-iconpos="left"></span>Back</a>
<a id="saveLocations" href="#" data-theme="a" data-role="button" data-transition="slidefade" data-inline="true" data-icon="arrow-r" data-iconpos="right">Next</a>
</div>
</fieldset>
</div>
</div>
<div data-role="page" id="page_config_preset_tags">
<div data-theme="b" data-role="header" data-position="fixed">
<h1>3. Add/Edit Default Tags</h1>
</div>
<div data-role="fieldcontain">
<label for="tagName">New Tag:</label>
<input type="text" data-theme="b" name="tagName" id="tagName" value="" placeholder="Enter a tag not listed below..." />
</div>
<div id="tagParent">
</div>
<div class="ui-body ui-body-b">
<fieldset class="ui-grid-b">
<div>
<a data-theme="b" data-rel="back" data-role="button" data-transition="slidefade" data-inline="true" data-icon="arrow-l" data-iconpos="left"></span>Back</a>
<a id="saveTags" href="#" data-theme="a" data-role="button" data-transition="slidefade" data-inline="true" data-icon="arrow-r" data-iconpos="right">Next</a>
</div>
</fieldset>
</div>
</div>
<div data-role="page" id="page_config_types">
<div data-theme="b" data-role="header" data-position="fixed">
<h1>4. Add/Edit Contrib Types</h1>
</div>
<div data-role="fieldcontain">
<label for="typeName">Type Name:</label>
<input type="text" data-theme="b" name="typeName" id="typeName" value="" placeholder="Enter a type not listed below..." />
</div>
<div data-role="fieldcontain">
<label for="typeTooltip">Type Tooltip:</label>
<input type="text" data-theme="b" name="typeTooltip" id="typeTooltip" value="" placeholder="Enter corresponding type tooltip..." />
</div>
<div id="typeParent">
</div>
<div class="ui-body ui-body-b">
<fieldset class="ui-grid-b">
<div>
<a data-theme="b" data-rel="back" data-role="button" data-transition="slidefade" data-inline="true" data-icon="arrow-l" data-iconpos="left"></span>Back</a>
<a id="saveTypes" data-theme="a" data-role="button" data-transition="slidefade" data-inline="true" data-icon="check" data-iconpos="right">Save Settings</a>
</div>
</fieldset>
</div>
</div>
</body>
</html>