forked from plamzi/gtm-tools-sheets-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContainerSelector.html
37 lines (37 loc) · 1.18 KB
/
ContainerSelector.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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<?!= include('Styles') ?>
</head>
<body>
<div class="block" id="info">
Loading...
</div>
<div id="accountWrapper" class="block form-group" style="display: none">
<label for="accounts">Select account:</label>
<select id="accounts"></select>
</div>
<div id="containerWrapper" class="block form-group" style="display: none">
<label for="container">Select container:</label>
<select id="containers" disabled></select>
</div>
<div id="versionsWrapper" class="block form-group" style="display: none">
<label for="versions">How many versions back?</label>
<select id="versions">
<option>1</option>
<option>5</option>
<option>10</option>
<option>20</option>
<option>50</option>
<option>all</option>
</select>
</div>
<div class="block">
<button class="action" id="build" disabled>Build</button>
<button id="close" style="float: right">Cancel</button>
</div>
<?!= include('ContainerSelectorJavaScript'); ?>
</body>
</html>