-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
45 lines (45 loc) · 1.93 KB
/
index.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
<html>
<head>
<title>Strava Web Data Connector</title>
<script src="lib/jquery-3.4.1.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="lib/bootstrap.min.css">
<script src="lib/popper.min.js" type="text/javascript"></script>
<script src="lib/bootstrap.min.js" type="text/javascript"></script>
<script src="lib/es6-promise.min.js" type="text/javascript"></script>
<script src="lib/tableauwdc-2.3.latest.js" type="text/javascript"></script>
<script src="wdc.js" type="text/javascript"></script>
</head>
<body>
<!-- Container -->
<div class="container">
<!-- Header Bar -->
<div class="jumbotron jumbotron-fluid">
<div class="container">
<div class="row">
<div class="col-2">
<img class="img-thumbnail" alt="..." style="height: 5em; width: 5em;"
src="https://1n4rcn88bk4ziht713dla5ub-wpengine.netdna-ssl.com/wp-content/uploads/2016/12/NCS_modified20151223083557MaxW640MaxH427AR-151229586.jpg" ></img>
</div>
<div class="col-md-auto">
<h1 class="display-4">Strava: WDC</h1>
</div>
</div>
<br/>
<p class="lead">Use the instructions <a href="https://github.com/takashibinns/tableau-wdc-strava">here</a> for help getting started.</p>
</div>
</div>
<!-- Login Form -->
<form >
<div class="form-group">
<label for="clientId">Client ID</label>
<input class="form-control" id="clientId">
</div>
<div class="form-group">
<label for="clientSecret">Client Secret</label>
<input class="form-control" id="clientSecret">
</div>
<button id="submit" class="btn btn-primary" type="submit" onclick="return false">Authorize Tableau</button>
</form>
</div>
</body>
</html>