-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdwPrototype.html
46 lines (42 loc) · 2.59 KB
/
dwPrototype.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
<html>
<head>
<title>data.world Tableau connector prototype</title>
<meta http-equiv="Cache-Control" content="no-store" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="https://connectors.tableau.com/libs/tableauwdc-2.1.latest.js" type="text/javascript"></script>
<script src="dwPrototype.js" type="text/javascript"></script>
</head>
<body>
<div class="container container-table">
<div class="row vertical-center-row">
<div class="text-center col-md-4 col-md-offset-4">
<h2>Get data.world dataset</h2>
</br>
<form>
<div class="form-group row">
<label for="dwDataset" class="col-sm-2 col-form-label">Dataset</label>
<div class="text-left col-sm-10">
<input type="text" class="form-control" id="dwDataset" placeholder="jonloyens/an-intro-to-dataworld-dataset" aria-describedby="dwDatasetHelpBlock">
<p id="dwDatasetHelpBlock" class="form-text text-muted">
Enter your dataset in the format ownerId/datasetId. Example: <code>jonloyens/an-intro-to-dataworld-dataset</code>
</p>
</div>
</div>
<div class="form-group row">
<label for="apiToken" class="col-sm-2 col-form-label">API Token</label>
<div class="text-left col-sm-10">
<input type="text" class="form-control" id="apiToken" aria-describedby="apiTokenHelpBlock">
<p id="apiTokenHelpBlock" class="form-text text-muted">
Find your API Token at <a href="https://data.world/settings/advanced" target="_blank">https://data.world/settings/advanced</a>.
</p>
</div>
</div>
</form>
<button type = "button" id = "submitButton" class = "btn btn-success" style = "margin: 10px;">Get Dataset</button>
</div>
</div>
</div>
</body>
</html>