This repository has been archived by the owner on Nov 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
431 lines (396 loc) · 23.6 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
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
---
title: "Alf.io: Discover Your Open Source Event Ticket Reservation System"
excerpt: Looking for a solid open source alternative to EventBrite or MeetUp? Discover Alf.io! Keep control your event and your data with Alf.io. Get started today!
---
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<script>
(function() {
$(document).ready(function(){
//all credits go to http://jsfiddle.net/panchroma/nwV2r/ and http://stackoverflow.com/a/23307408
// hide .navbar first
$(".navbar").hide();
// fade in .navbar
$(function () {
$(window).scroll(function () {
var header = $('.alfio-header');
if ($(this).scrollTop() > header.offset().top + header.outerHeight() ) {
$('.navbar').fadeIn();
} else {
$('.navbar').fadeOut();
}
});
});
});
var organizersPerRegion = [
['Switzerland', 10],
['Italy', 8],
['Netherlands', 2],
['United States', 2],
['United Kingdom', 2],
['Spain', 2],
['Belgium', 2],
['Australia', 2],
['Bahrain', 1],
['Botswana', 1],
['Egypt', 1],
['Poland', 1],
['Thailand', 1],
['Sweden', 1],
['New Zealand', 1],
['United Arab Emirates', 1],
['Singapore', 1],
['South Africa', 1],
['Morocco', 1],
['Japan', 1],
['Argentina', 1],
['Canada', 1]
];
var mapEl = $('#regions_container');
mapEl.ready(function() {
var data = [['Country', 'Organizers']];
organizersPerRegion.forEach(function(v) {data.push(v)});
google.charts.load('current', {'packages':['geochart']});
google.charts.setOnLoadCallback(drawRegionsMap(data));
function drawRegionsMap(stats) {
return function() {
var data = google.visualization.arrayToDataTable(stats);
var options = {legend:'none'};
var chart = new google.visualization.GeoChart(document.getElementById('regions_div'));
chart.draw(data, options);
}
}
});
$('#regions_txt').ready(function() {
var textEl = $('#regions_txt')
var template = '<tr><td>country</td><td class="text-center">organizers</td></tr>';
organizersPerRegion.map(function(opr) {
return template.replace('country', opr[0]).replace('organizers', opr[1]);
}).forEach(function(t) {
$(t).appendTo(textEl);
});
});
})();
</script>
<a href="https://github.com/alfio-event/alf.io"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<div class="jumbotron text-center alfio-header">
<h1 class="title">Alf.io</h1>
<img class="img-responsive center-block" src="images/responsive.png" alt="desktop, mobile and tablet ready"/>
<h1>The open source ticket reservation system</h1>
<a class="btn btn-lg btn-default" href="https://github.com/alfio-event/alf.io" target="_blank"><i class="fa fa-github-square"></i> View on github</a>
<a class="btn btn-lg btn-default" href="https://demo.alf.io/admin/" title="try alf.io!" target="_blank"><i class="fa fa-play-circle"></i> Try it!</a>
<a class="btn btn-lg btn-success" href="https://github.com/alfio-event/alf.io/releases/latest" target="_blank"><i class="fa fa-download"></i> Download</a>
<div class="text-center" style="margin-top:15px">
<a href="https://twitter.com/alfio_event" class="twitter-follow-button" data-show-count="false">Follow @alfio_event</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
</div>
<div class="container">
{% include header.html %}
<div class="alert alert-warning"><h2><i class="fa fa-volume-up"></i> version 2.0-M1 is out!</h2>
<p>check what's new! <a href="https://github.com/alfio-event/alf.io/releases/latest" target="_blank">release notes</a>
<ul>
<li>Support for Stripe's <a href="https://stripe.com/payments/strong-customer-authentication" target="_blank">Strong Customer Authentication</a> (aka 3D Secure 2) implementation, see <a href="https://github.com/alfio-event/alf.io/blob/master/docs/howto/configuration/stripe-sca/index.md" target="_blank">tutorial</a></li>
<li><a href="https://revolut.com" target="_blank">Revolut</a> automatic incoming wire transfer reconciliation</li>
<li>iOS wallet support, see <a href="https://github.com/alfio-event/alf.io/blob/master/docs/howto/configuration/apple-pass/index.md" target="_blank">tutorial</a></li>
<li>Turkish, Romanian, and Portugese translation</li>
<li>and much more!</li>
</ul>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="page-header">
<h2><a href="http://www.gnu.org/copyleft/gpl.html" target="_blank"><img src="images/gplv3-88x31.png" alt="GPLv3"></a> Free <small>as in freedom</small></h2>
</div>
<span>Alf.io is <a href="http://www.gnu.org/copyleft/gpl.html" target="_blank">free software</a>. You can use it whenever and wherever you want. You can also modify and redistribute it.</span>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="page-header">
<h2><i class="fa fa-lock"></i> Secure</h2>
</div>
<span>Alf.io has been built with security in mind. Because you care about your user's data. It serves pages using HTTPS protocol and with strict <a href="http://www.html5rocks.com/en/tutorials/security/content-security-policy/">Content Security Policy</a> rules</span>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="page-header">
<h2><i class="fa fa-mobile"></i> Mobile Ready</h2>
</div>
<span>The GUI has been built upon the wonderful <a href="http://getbootstrap.com" target="_blank">Twitter Bootstrap</a> framework, which is "mobile-first". The best user experience on each device</span>
</div>
<div class="clearfix visible-md-block visible-lg-block"></div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="page-header">
<h2><i class="fa fa-users"></i> Fair</h2>
</div>
<span>Keep control of your event and keep attendees data away from big players. Don't annoy them with additional fees and pay only what is really needed!</span>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="page-header">
<h2><i class="fa fa-language"></i> Multi-language</h2>
</div>
<span>The GUI is currently available in Italian, English, German, Dutch, French, Turkish, Romanian and Portuguese. <a href="https://poeditor.com/join/project/ttBYTmPYdr" target="_blank">Help us to translate it into your language!</a></span>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<div class="page-header">
<h2><i class="fa fa-credit-card"></i> <a href="http://en.wikipedia.org/wiki/Payment_Card_Industry_Data_Security_Standard" target="_blank">PCI</a>-Compliant</h2>
</div>
<span>Alf.io uses <a href="https://stripe.com" target="_blank">Stripe</a> as gateway for payments done by credit card. This means that no sensitive data will be stored on your server and you’ll be automatically compliant with the strictest PCI requirements.</span>
</div>
<div class="clearfix visible-md-block visible-lg-block"></div>
<div class="col-xs-12 col-sm-12 col-md-4 col-md-push-4">
<div class="page-header">
<h2><i class="fa fa-area-chart"></i> Measurable</h2>
</div>
<span>Simply create a Google Analytics (tm) account and configure your metrics. All the URLs are unique and let you analyze the incoming traffic. Anonymous statistics and IP-Address scrambling are enabled by default, so you are already compliant with EU "cookie law".</span>
</div>
<div class="col-xs-12 col-sm-12 col-md-4 col-md-push-4">
<div class="page-header">
<h2><i class="fa fa-cloud"></i> Cloud ready</h2>
</div>
<span>Already tested and deployed on <a href="https://www.openshift.com/" target="_blank">Openshift</a> (<a href="https://github.com/alfio-event/alf.io/blob/1.x-maintenance/docs/deployment/OpenShift.md" title="install on Openshift">tutorial</a>), <a href="https://run.pivotal.io/" target="_blank">Pivotal Cloud Foundry</a> (<a href="tutorials/cloudfoundry/" title="install on Pivotal Cloud Foundry ">tutorial</a>), <a href="https://www.sap.com/community/topic/cloud-platform.html" target="_blank">SAP Cloud Platform</a> (<a href="https://blogs.sap.com/2017/05/20/deploying-alf.io-oss-event-ticketing-app-on-cloud-foundry/" target="_blank">tutorial</a>), <a href="https://www.heroku.com" target="_blank">Heroku</a> (<a href="tutorials/heroku/" title="Install on Heroku">tutorial</a>), <a href="https://cloud.google.com/kubernetes-engine/" target="_blank">Google Kubernetes Engine (GKE)</a> (<a href="https://github.com/stephanj/alfio-k8s" target="_blank">tutorial</a>), and <a href="https://www.clever-cloud.com" target="_blank">Clever Cloud</a> (tutorial soon)!</span>
</div>
<div class="col-xs-12 col-sm-12 col-md-4 col-md-pull-8">
<div class="page-header">
<h2><i class="fa fa-wrench"></i> Flexible</h2>
</div>
<span>You can define free-of-charge as well as paid events. You can allow your users either to pre-pay the ticket by credit card<sup>(1)</sup> or PayPal, post-pay it by bank transfer, or even pay it at the entrance desk.</span>
<h6><small><sup>(1)</sup> The event organizer needs a <a href="https://stripe.com" target="_blank">Stripe</a> account in order to get paid. No registration is required for the attendees</small></h6>
</div>
</div>
<hr />
<div class="well">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="page-header">
<h2><i class="fa fa-code"></i> Do you want to contribute?</h2>
</div>
<span>Yes, you! Do you have any new feature in mind? Don't be shy, send a pull request! Or, if you are not a developer, <a href="https://github.com/alfio-event/alf.io/issues" target="_blank">file a new issue</a> describing your idea.
<br/>We need help from developers as well as from:
<ul>
<li>Usability experts</li>
<li>Translators</li>
<li>Testers</li>
<li>Technical writers</li>
</ul>
</span>
</div>
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="page-header">
<h2><i class="fa fa-envelope-o"></i> Contact us!</h2>
</div>
<span>Are you using alf.io? Excellent! We would like to add your conference's link to our list. Do you have any question? We'd love to hear something from you, please <a href="https://groups.google.com/d/forum/alfio" target="_blank">drop us a line</a>!</span>
</div>
</div>
</div>
<div class="clearfix"></div>
<hr/>
<div class="jumbotron alfio-usedby text-center">
<h2 style="margin-bottom: 30px">Proudly collecting attendees for:</h2>
<ul class="list-inline">
<li class="alfio-usedby">
<a href="https://www.devoxx.be" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/devoxx_logo.gif">
</a>
</li>
<li class="alfio-usedby">
<a href="https://www.devoxx.ma" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/logo-devoxx-ma.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://2018.springio.net/" target="_blank">
<img class="media-object img-thumbnail" style="min-width: 120px" src="images/ext/logo-spring-io.svg">
</a>
</li>
<li class="alfio-usedby">
<a href="https://www.jbcnconf.com/2018/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/logo-jbcnconf.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://www.amicidelticino.ch" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/amicidelticino-logo.png">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.agilemovement.it/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/iam__logo.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://bottiglieaperte.it" target="_blank">
<img class="media-object img-thumbnail" style="background-color: #8c133b" src="images/ext/bottiglie-aperte-milano.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://ortalakechallenge.com/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/logoortalake.jpg">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.tedxlugano.com" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/TedXLugano_BlackA_RGB.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://amperia.nl/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/amperia.png">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.agileday.it/mini/2018/trento/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/miat.png">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.agileday.it/mini/2018/torino/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/logotad.png">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.pocamp.it" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/POCamp_h_logo.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://voxxeddays.com/cern" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/CERN_logo_black.png">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.agilebusinessday.com/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/abd.jpg">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.agileday.it/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/IAD.gif">
</a>
</li>
<li class="alfio-usedby">
<a href="https://voxxeddays.com/zurich/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/vdz.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://voxxeddays.com/ticino/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/vdt.png">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.ated.ch" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/ated.png">
</a>
</li>
<li class="alfio-usedby">
<a href="http://www.off-off-lac.ch/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/ool.png">
</a>
</li>
<li class="alfio-usedby">
<a href="https://www.agilemovement.it/workingsoftware/" target="_blank">
<img class="media-object img-thumbnail" src="images/ext/working-software-logo.png">
</a>
</li>
</ul>
</div>
<hr>
<div class="container text-center">
<h2>Do you need Help?</h2>
<p>Having a live service on the Internet is not a trivial task. It's important to keep it secure, healthy and up-to-date constantly. Don't worry, we're here to help!</p>
<h3>try</h3>
<a href="https://swicket.io" target="_blank">
<img style="max-width: 240px" src="images/ext/sponsor/logo-swicket.svg">
</a>
</div>
<hr>
<div class="container text-center">
<h3>Usage map:</h3>
<p>Alf.io doesn't send <b>any</b> usage statistics and/or metrics to us. Because we respect your privacy.<br> These are the organizers we know about, and we'd love to know <b>where</b> are you using it, so that we can show it on the map below.</p>
<p><a class="btn btn-success btn-lg" href="https://goo.gl/forms/nmpNNETLL4NCUPJt2" target="_blank">Tell us about you!</a></p>
<div id="regions_container" class="hidden-xs hidden-sm" style="width:100%">
<div id="regions_div" style="width:100%"></div>
</div>
<div class="row">
<div class="col-xs-6 col-xs-offset-3">
<table class="table table-striped visible-xs visible-sm text-left">
<thead>
<tr>
<th>Country</th>
<th>Organizers</th>
</tr>
</thead>
<tbody id="regions_txt">
</tbody>
</table>
</div>
</div>
</div>
<script>
$(document).ready(function(){
$.getJSON('https://api.github.com/repos/alfio-event/alf.io/contributors', function(list) {
list.forEach(function(contributor) {
var element = $('#contributors-template').clone();
element.find('.contributor-link').attr('href', contributor.html_url);
element.find('.contributor-avatar').attr('src', contributor.avatar_url);
element.find('.contributor-nickname').html(contributor.login);
element.find('.contributor-contributions').html(contributor.contributions);
element.appendTo('#contributors');
$.getJSON(contributor.url, function(details) {
var name = details.name && details.name.length > 0 ? details.name : contributor.login;
element.find('.contributor-name').html(name);
element.find('.contributor-avatar').attr('alt', name);
element.removeClass('hidden');
});
});
});
});
</script>
<hr>
<h2 class="text-center" style="margin-bottom:30px;">The people behind alf.io</h2>
<div id="contributors" class="row">
</div>
<div class="hidden col-xs-6 col-sm-4" id="contributors-template">
<div class="media" style="margin-bottom: 10px">
<div class="media-left contributor-picture">
<a href="#" class="contributor-link">
<img class="media-object img-thumbnail contributor-avatar" style="max-height: 120px" src="" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading"><span class="contributor-name"></span></h4>
<p><i class="fa fa-code-fork"></i> contributions: <span class="contributor-contributions"></span></p>
<p><i class="fa fa-github"></i> <a class="contributor-link"><span class="contributor-nickname"></span></a></p>
</div>
</div>
</div>
<hr>
<h2 class="text-center" style="margin-bottom:30px;">Sponsors</h2>
<p><i>Open Source</i> doesn't mean <i>free of charge</i>, it means <b>freedom</b>. Although the code and the binaries might be <i>free of charge</i>, <i>and therefore cheap</i>, the time of the contributors is not. There are some companies which are investing in alf.io, even if just for one feature, and we would like to <b>thank</b> them for helping the project.</p>
<h3>Main Sponsors</h3>
<p>Companies constantly investing resources and money to evolve Alf.io</p>
<div style="display: table; ">
<div style="display: table-cell;">
<a href="https://swicket.io" target="_blank">
<img class="media-object" style="width: 240px;max-height: 100px;vertical-align: baseline;" src="images/ext/sponsor/logo-swicket.svg">
</a>
</div>
<div style="display: table-cell;">
<img class="media-object" style="max-width: 180px;margin-bottom:15px;margin-left:20px;" src="images/ext/sponsor/exteso_logo.jpg">
</div>
</div>
<h3>Feature Sponsors</h3>
<p>Companies that contributed to the development of specific features</p>
<div style="display: table; ">
<div style="display: table-cell;">
<a href="https://www.amicidelticino.ch" target="_blank">
<img class="media-object" src="images/ext/amicidelticino-logo.png" style="max-height: 60px;">
</a>
</div>
</div>
<h4 class="mt-2">Do you want to be a sponsor? <a href="https://goo.gl/forms/nmpNNETLL4NCUPJt2" target="_blank">Drop us a line!</a></h4>
</div>
{% include footer.html %}
</body>
</html>