-
Notifications
You must be signed in to change notification settings - Fork 0
/
shuffle.html
34 lines (30 loc) · 1.18 KB
/
shuffle.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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<?!= include("common_CSS")?>
<?!= include("common_CSS_spinner")?>
</head>
<body>
<div id="container">
<div class="settings">
<label class="italics" for="txtDataRange">Data Range:</label>
<input type="text" id="txtDataRange" placeholder="Enter data range (ie A1:C5)">
<label class="italics" for="txtConstant">Constant Header:</label>
<input type="text" id="txtConstant" placeholder="Enter header name for constant values">
<label class="italics" for="txtShuffle">Shuffle Header:</label>
<input type="text" id="txtShuffle" placeholder="Enter the header name for shuffle values">
<label class="italics" for="txtAddress">Address:</label>
<input type="text" id="txtAddress" placeholder="Enter the address for results(ie 'B2')">
<label class="italics" for="numberOfshuffles">Shuffles:</label>
<input type="text" id="numberOfshuffles" placeholder="Enter the number of shuffles">
<div class="item-B">
Enter 0 for no shuffles
</div>
<button id="runIt">Run Shuffle</button>
</div>
</div>
<div id="nest2"></div>
<?!= include("shuffle_JS")?>
</body>
</html>