forked from DataSciencePolimi/COCTEAU
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
83 lines (80 loc) · 4.36 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
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
<!doctype html>
<html>
<head>
<title>COCTEAU.nl</title>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<link href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" media="screen" rel="stylesheet" type="text/css" />
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/frame.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/controls.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/widgets.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/account.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/custom.css" media="screen" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="js/menu.js"></script>
<script src="js/widgets.js"></script>
<script src="js/util.js"></script>
<script src="js/account.js"></script>
<script src="js/tracker.js"></script>
<script src="js/environment.js"></script>
<script src="js/index.js"></script>
<style>
#menu-index {
color: rgb(255, 255, 255) !important;
opacity: 1 !important;
font-weight: 700 !important;
}
</style>
</head>
<body>
<div class="menu-container"></div>
<div class="content-container" id="main-content-container" style="display: none;">
<div class="content">
<div class="content-table flex-column">
<div class="flex-row-space-between">
<div class="flex-item flex-column">
<h2 class="add-top-margin">
Express and Play!
</h2>
</div>
<!-- Temporarily comment out the Google Sign-In because of a bug (consent dialog does not disappear) -->
<!-- <div class="flex-item flex-column">
<div class="control-group">
<a id="sign-in-prompt" class="custom-button-flat large stretch-on-mobile pulse-primary"><img src="img/user.png"><span>Sign In</span></a>
</div>
</div> -->
</div>
<div class="flex-row">
<div class="flex-item flex-column">
<p class="text">
We need your feedback on city projects and policy decision-making!
Below are scenarios that the decision makers and project teams are interested in knowing your thoughts.
Please click or tap on a scenario to express thoughts and play games.
</p>
</div>
</div>
<!-- The scenarios will be loaded by using the back-end API -->
<div class="gallery add-top-margin-small add-bottom-margin-small" id="scenario"></div>
<div class="flex-row">
<div class="flex-item flex-item-stretch flex-column">
<p class="text">
Please let us know which aspects are working well and which could be improved via the <a href="https://docs.google.com/forms/d/e/1FAIpQLSe5IyMm-lZGofVX6BPlnI6_fL_lxEXHtKV4HV_OLxrv4zWMJQ/viewform?usp=sf_link">Feedback Form</a>.
We really appreciate your input!
</p>
<p class="text text-small text-italic">
Credits: this tool is developed in <a href="https://www.tudelft.nl/en/ide/" target="_blank">TU Delft IDE</a> and is supported by the <a href="https://periscopeproject.eu/" target="_blank">PERISCOPE project</a>.
The design is adopted from the <a href="http://trigger-game.eu/" target="_blank">COCTEAU tool</a> in the <a href="https://trigger-project.eu/" target="_blank">Trigger project</a>.
Photos are obtained from <a href="https://unsplash.com/" target="_blank">Unsplash</a> and <a href="https://www.ams-institute.org/" target="_blank">AMS</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>