-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
210 lines (188 loc) · 7.97 KB
/
app.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="SmartSocial">
<meta name="author" content="FER">
<title>App</title>
<link rel="shortcut icon" href="assets/images/icon-ss.png">
<!-- Bootstrap -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Icons -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Fonts -->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Alice|Open+Sans:400,300,700">
<!-- Custom styles -->
<link rel="stylesheet" href="assets/css/styles.css">
<!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="assets/js/template.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// navigation click actions
$('.scroll-link').on('click', function(event) {
event.preventDefault();
var sectionID = $(this).attr("data-id");
scrollToID('#' + sectionID, 750);
});
// scroll to top action
$('.scroll-top').on('click', function(event) {
event.preventDefault();
$('html, body').animate({scrollTop: 0}, 'slow');
});
// mobile nav toggle
$('#nav-toggle').on('click', function(event) {
event.preventDefault();
$('#main-nav').toggleClass("open");
});
});
// scroll function
function scrollToID(id, speed) {
var offSet = 140;
var targetOffset = $(id).offset().top - offSet;
var mainNav = $('#main-nav');
$('html,body').animate({scrollTop: targetOffset}, speed);
if (mainNav.hasClass("open")) {
mainNav.css("height", "15px").removeClass("in").addClass("collapse");
mainNav.removeClass("open");
}
}
if (typeof console === "undefined") {
console = {
log: function() {
}
};
}
</script>
<style>
.imgLogo{
max-width: 130px;
}
</style>
</head>
<body>
<header id="header">
<div id="head" class="parallax" parallax-speed="2">
<h1 id="logo" class="text-center">
<img class="img-circle" src="assets/images/logo-ss.png" alt="">
<span class="title">SmartSocial</span>
</h1>
</div>
<nav class="navbar navbar-default navbar-sticky">
<div class="container-fluid">
<div class="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.php">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="partners.html">Partners</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="faq.html">FAQ</a></li>
<li class="active"><a href="app.html">App</a></li>
<li><a href="login.php " >Login</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
</header>
<main id="main">
<div class="container">
<div class="row section topspace">
<div class="panel panel-cta"><div class="panel-body">
<div class="col-lg-8">
<p>Participate and download our SmartSocial Influence app!</p>
</div>
<div class="col-lg-4 text-right">
<a href="http://goo.gl/joKiEB" target="_blank" class="btn btn-primary btn-lg">Download for Android</a>
</div>
</div></div>
<p>It is a cool new measure of how important you are in your networks... This is the data we collect – don't worry, your data is safe with us.</p>
<table class="table_app">
<tr>
<th>WHAT DATA?</th>
<th>WHY?</th>
<th>HOW?</th>
</tr>
<tr>
<td><strong>Number</strong> of Calls</td>
<td>More calls – more Influence.</td>
<td rowspan="3">We analyze <strong>quantity of items</strong> only, meaning we count them. We promise no content or private data is analyzed, ever.</td>
</tr>
<tr>
<td><strong>Number</strong> of SMS </td>
<td>More SMS – more Influence.</td>
</tr>
<tr>
<td><strong>Number</strong> of likes or comments per your Photo or Status</td>
<td>Engagement per content you generate on Facebook is vital for your Influence.</td>
</tr>
<tr>
<td>Birthday</td>
<td rowspan="2">For statistical purposes of sampling only, to know where our Influencers come from and how old they are.</td>
<td rowspan="2">Used as <strong>aggregated and anonymized data</strong> only.</td>
</tr>
<tr>
<td>Hometown, Current City</td>
</tr>
</table>
<br/>
<h3>Questions?</h3>
<br/>
<p>Check our <a href="faq.html">FAQ here</a> first - or <a href="mailto:[email protected]">send an email</a>.</p>
</div>
<br/>
<br/>
<br/>
</div> <!-- /container -->
</main>
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-8 widget">
<h3 class="widget-title">Contact</h3>
<div class="widget-body">
<p>
<a href="mailto:[email protected]">[email protected]</a><br>
University of Zagreb, Faculty of Electrical Engineering and Computing<br><br>
<strong>Address:</strong> <br>Unska 3<br> 10000 Zagreb<br> Croatia
</p>
</div>
</div>
<div class="col-md-2 widget">
<h3 class="widget-title">Privacy Policy</h3>
<div class="widget-body">
<p class="follow-me-icons">
<a href="/Privacy_Policy.pdf" target="_blank"><i class="fa fa-file-pdf-o fa-2"></i></a>
<br/>
</p>
</div>
</div>
<div class="col-md-2 widget">
<h3 class="widget-title">Follow us</h3>
<div class="widget-body">
<p class="follow-me-icons">
<a href="https://www.facebook.com/SmartSocialInfluence" target="_blank"><i class="fa fa-facebook-square fa-2"></i></a>
<a href=""><i class="fa fa-twitter fa-2"></i></a>
<br/>
</p>
</div>
</div>
</div> <!-- /row of widgets -->
</div>
</footer>
<footer id="underfooter">
<div class="container">
<div class="row">
<div class="col-md-6 widget col-md-offset-6">
<div class="widget-body">
<p class="text-right">
Copyright © 2014, University of Zagreb<br>
<a href="https://www.fer.unizg.hr/en" rel="">Faculty of Electrical Engineering and Computing</a> </p>
</div>
</div>
</div> <!-- /row of widgets -->
</div>
</footer>
</body>
</html>