-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
777 lines (663 loc) · 30.7 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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WTF @ CHI2025</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/venobox/venobox.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- =======================================================
Theme Name: TheEvent
Theme URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<!-- Uncomment below if you prefer to use a text logo -->
<h1><a href="#intro">Walking the Future</a></h1>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#sponsors">Organizers</a></li>
<li><a href="#cfp">Call for Participation</a></li>
<li class="buy-tickets"><a href="https://forms.gle/Hxy2nZKXf8pUGQa2A">Apply</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container wow fadeIn">
<h1 class="mb-4 pb-0">Walking the Future<br><span>Bridging Foot Augmentation into Next Steps of Human Augmentation</span></h1>
<p class="mb-4 pb-0">26 April 2025</p>
<a href="#about" class="about-btn scrollto">About The Workshop</a>
</div>
</section>
<main id="main">
<!--==========================
About Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>About The Workshop</h2>
<p>
Over the past decade, a noticeable increase in literature can be seen in wearable foot interfaces, which
have evolved from activity tracking to enhancing human capabilities. Our legs, being the largest body
limbs, play an essential role in various functions such as locomotion, maintaining balance, supporting
proper posture and providing ground-contact using our feet. Hence, foot augmentations offer the
opportunity to augment our entire body. However, most prior research focuses on specific application
areas, thus affording a research agenda to further understand the full potential of feet in designing
augmentations and to contextualize it in the broader human augmentation space. To achieve this, in this
workshop, we invite researchers and practitioners interested in designing human and foot augmentations. We
will discuss how early foot interfaces helped in augmenting humans, and based on current work and trends
in foot augmentation, we will formulate strategies for the next steps and discuss the applicability of
such strategies in the broader space of human augmentation.
</p>
</div>
<div class="col-lg-3">
<h3>Where</h3>
<p>Hybrid Workshop at CHI'25</p>
</div>
<div class="col-lg-3">
<h3>When</h3>
<p>Saturday, 26 April 2025</p>
</div>
</div>
</div>
</section>
<!--==========================
Details about the workshop
============================-->
<section id="workshop-details" class="wow fadeIn">
<div class="container">
<div class="section-header">
<h2>What are the topics covered in the Workshop?</h2>
</div>
<div class="row">
<!-- <div class="col-md-6">
<img src="img/topics.png" alt="Speaker 1" class="img-fluid">
</div> -->
<div class="col-md-2">
</div>
<div class="col-md-8">
<!-- <div class="details">
<p class="about-details">TODO...</p>
<p class="about-details">TODO...</p>
</div> -->
<div class="details">
<ul class="about-details">
<li><span class="color-red">Past to Present</span> - What can we learn from the history of foot
augmentation, and what is the current state (e.g., modalities, technologies, methods)?</li>
<li><span class="color-red">Present to Future</span> - What are the strategies for the next steps in
foot augmentation?</li>
<li><span class="color-red">Foot to Human Augmentation</span> - How do such strategies link to the
broader space of human augmentation?</li>
</ul>
</div>
</div>
<div class="col-md-2">
</div>
</div>
</div>
</section>
<!--==========================
Speakers Section
============================-->
<!--
<section id="speakers" class="wow section-with-bg fadeInUp">
<div class="container">
<div class="section-header">
<h2>Keynote Speakers</h2>
</div>
<div class="row no-gutters sponsors-wrap clearfix">
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/speakers/eduardo.jpeg" alt="Eduardo Velloso" class="rounded-circle">
<div class="details">
<h3><a href="https://www.eduardovelloso.com/">Eduardo <br>Velloso</a></h3>
<p>Associate Professor<br>University of Melbourne</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/speakers/suranga.jpg" alt="Suranga Nanayakkara" class="rounded-circle">
<div class="details">
<h3><a href="https://suranga.info/">Suranga <br>Nanayakkara</a></h3>
<p>Associate Professor <br>National University of Singapore</p>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>1-Day Workshop Schedule</h2>
<p></p>
</div>
<table class="table table-hover">
<thead>
<tr>
<th scope="col"><span class="color-red">Yokohama <br>UTC+9</span></th>
<th scope="col">San Francisco <br>UTC-7</th>
<th scope="col">New York <br>UTC-4</th>
<th scope="col">Berlin <br>UTC+2</th>
<th scope="col">New Delhi <br>UTC+5:30</th>
<th scope="col">Hong Kong <br>UTC+8</th>
<th scope="col">Melbourne <br>UTC+10</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="color-red">Sat, April 26 <br><time>09:00 - 15:00</time></span></td>
<td>Fri, April 25 <br><time>17:00 - 23:00</time></td>
<td>Fri, April 25 <br><time>20:00 - 02:00</time></td>
<td>Sat, April 26 <br><time>02:00 - 08:00</time></td>
<td>Sun, April 26 <br><time>05:30 - 11:30</time></td>
<td>Sun, April 26 <br><time>08:00 - 14:00</time></td>
<td>Sun, April 26 <br><time>10:00 - 16:00</time></td>
</tr>
</tbody>
</table>
<h3 class="sub-heading">The workshop consists of multiple lightning talks leading into dynamic breakout sessions and group discussions aimed at fostering collaboration and deeper exploration of the topics.</h3>
<div class="tab-content row justify-content-center">
<!-- Schedule -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>20 minutes</time></div>
<div class="col-md-10">
<h4>Introducing the Workshop</h4>
<p>On-boarding and Introduction of Participants</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>20 minutes</time></div>
<div class="col-md-10">
<h4>Lightning Talks</h4>
<p>two 10-minutes talks</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10 minutes</time></div>
<div class="col-md-10">
<h4>Q&A and Discussion</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10 minutes</time></div>
<div class="col-md-10">
<p>Break</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10 minutes</time></div>
<div class="col-md-10">
<h4>Introduce Topics and Set Groups</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>80 minutes</time></div>
<div class="col-md-10">
<h4>1st Breakout Session - Past to Present</h4>
<p>Topic Discussion, Presentation of Intermediate Results, and Group Discussion</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>60 minutes</time></div>
<div class="col-md-10">
<p>Break</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>20 minutes</time></div>
<div class="col-md-10">
<h4>Lightning Talks</h4>
<p>two 10-minutes talks</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10 minutes</time></div>
<div class="col-md-10">
<h4>Q&A and Discussion</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>80 minutes</time></div>
<div class="col-md-10">
<h4>2nd Breakout Session - Past to Present</h4>
<p>Topic Discussion, Presentation of Intermediate Results, and Group Discussion</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10 minutes</time></div>
<div class="col-md-10">
<p>Break</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>30 minutes</time></div>
<div class="col-md-10">
<h4>Synthesize and Conclude</h4>
<p>Overview of existing resources and look into things that needs to be done</p>
</div>
</div>
</div>
<!-- End Schedule -->
</div>
</div>
</section>
<!--==========================
Organizers Section
============================-->
<section id="sponsors" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Organizers</h2>
</div>
<div class="row no-gutters sponsors-wrap clearfix">
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/nihar.jpg" class="rounded-circle" alt="Nihar Sabnis">
<div class="details">
<h3><a href="https://sensint.mpi-inf.mpg.de/people.html">Nihar<br>Sabnis</a></h3>
<p>PhD Student<br>Sensorimotor Interaction Group<br>MPI for Informatics</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/dennis_wittchen.png" class="rounded-circle" alt="Dennis Wittchen">
<div class="details">
<h3><a href="https://hci.social/@denniswittchen">Dennis<br>Wittchen</a></h3>
<p>Researcher<br>Dresden University of Applied Sciences</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/template.png" class="rounded-circle" alt="Ata Otaran">
<div class="details">
<h3><a href="https://hci.cs.uni-saarland.de/">Ata<br>Otaran</a></h3>
<p>Post-Doc<br>HCI Lab at Saarland University</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/template.png" class="rounded-circle" alt="Fatima Badmos">
<div class="details">
<h3><a href="https://hci.cs.uni-saarland.de/">Fatima<br>Badmos</a></h3>
<p>PhD Student<br>Technological University Dublin</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/template.png" class="rounded-circle" alt="Siyi Liu">
<div class="details">
<h3><a href="https://exertiongameslab.org/">Siyi<br>Liu</a></h3>
<p>PhD Student<br>Exertion Games Lab at Monash</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/template.png" class="rounded-circle" alt="Aryan Saini">
<div class="details">
<h3><a href="https://exertiongameslab.org/">Aryan<br>Saini</a></h3>
<p>PhD Student<br>Exertion Games Lab at Monash</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/template.png" class="rounded-circle" alt="Georg Regal">
<div class="details">
<h3><a href="https://publications.ait.ac.at/de/persons/georg.regal">Georg<br>Regal</a></h3>
<p>Scientist<br>Austrian Institute of Technology</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/template.png" class="rounded-circle" alt="Vincent van Rheden">
<div class="details">
<h3><a href="https://hci.plus/person/van-rheden/">Vincent<br>van Rheden</a></h3>
<p>Research Fellow<br>University of Salzburg</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/speakers/suranga.jpg" alt="Suranga Nanayakkara" class="rounded-circle">
<div class="details">
<h3><a href="https://suranga.info/">Suranga <br>Nanayakkara</a></h3>
<p>Associate Professor <br>National University of Singapore</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/speakers/template.png" alt="Denys J.C. Matthies" class="rounded-circle">
<div class="details">
<h3><a href="http://www.denysmatthies.com/">Denys J.C.<br>Matthies</a></h3>
<p>Associate Professor<br>Technical University of Applied Sciences Lübeck</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/speakers/template.png" alt="Florian Floyd Mueller" class="rounded-circle">
<div class="details">
<h3><a href="http://floydmueller.com">Florian 'Floyd'<br>Mueller</a></h3>
<p>Professor<br>Monash University</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/speakers/troy.jpeg" alt="Troy Nachtigall" class="rounded-circle">
<div class="details">
<h3><a href="https://troykyo.net/">Troy <br>Nachtigall</a></h3>
<p>Designer and Lecturer<br>Eindhoven University of Technology</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/paul_strohmeier.jpg" class="rounded-circle" alt="Paul Strohmeier">
<div class="details">
<h3><a href="https://fkeel.github.io/">Paul<br>Strohmeier</a></h3>
<p>Group Leader <br>Sensorimotor Interaction Group <br>MPI for Informatics</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/speakers/laia.jpeg" alt="Laia Turmo Vidal" class="rounded-circle">
<div class="details">
<h3><a href="https://www.laiaturmovidal.com/">Laia Turmo <br>Vidal</a></h3>
<p>Digital Futures Postdoctoral Fellow<br>KTH Royal Institute of Technology</p>
<div class="social">
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="organizer">
<img src="img/organizers/don_min.webp" class="rounded-circle" alt="Don Samitha Elvitigala">
<div class="details">
<h3><a href="https://samithaelvitigala.com/">Don<br>Samitha Elvitigala</a></h3>
<p>Lecturer<br>Exertion Games Lab at Monash</p>
<div class="social">
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Call for Participation Section
============================-->
<section id="cfp" class="section-with-bg wow fadeIn">
<div class="container">
<div class="section-header">
<h2>Call for Participation</h2>
</div>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-8">
<div class="details">
<p class="about-details">
The <i>Walking the Future</i> workshop aims to serve as a platform to foster discussions on foot augmentation
among researchers, enthusiasts, and practitioners. Moreover, the workshop should form the bridge between
learnings of the past to deriving design guidelines and research strategies for the future of foot
augmentation. This hybrid workshop is open to anybody with experience in design and research in the
field of human augmentation. To participate, you need to submit a two to three-page position paper (by
Feb. 13, 2025) using the ACM Master Article Template (see <a
href="https://chi2025.acm.org/chi-publication-formats/>CHI publication formats</a>).
Please use this <a href="https://forms.gle/Hxy2nZKXf8pUGQa2A">form</a> to upload your manuscript. We
encourage your position paper to focus on at least one of the areas which would be discussed during the
workshop – (a) modalities and methods for foot augmentation, (b) design and fabrication of systems to
provide augmentations, (c) design challenges and guidelines, (d) connections between foot and human
augmentation, or another area you believe is worth discussing. The paper should briefly introduce
yourself and provide an overview of what you believe needs discussion during the workshop. You are
highly encouraged to present your work in this context. Position papers will form the basis of the group
discussions. Finally, participants will have a choice to have their accepted paper published on the
workshop website. At least one author of an accepted position paper must attend the workshop (in-person
or virtual) and register for at least one day of the conference.
</p>
<p class="about-details color-red">Important Dates</p>
<p class="about-details">
Submission Deadline: February 13, 2025</br>
Notification: March 10, 2025
</p>
<div><a id="apply-cfp" class="apply-btn" href="https://forms.gle/Hxy2nZKXf8pUGQa2A">Apply</a></div>
</div>
</div>
<div class="col-md-2">
</div>
</div>
</div>
</section>
<!--==========================
F.A.Q Section
============================-->
<section id="faq" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>FAQ</h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-9">
<ul id="faq-list">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">How to attend the workshop? <i
class="fa fa-minus-circle"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
Walking the Future workshop is a hybrid format and you can register for the event by
reserving your spot during CHI 2025 registration.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">How to apply as a participant? <i
class="fa fa-minus-circle"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
Participants can apply by submitting the google form. <a
href="https://forms.gle/Hxy2nZKXf8pUGQa2A">Apply</a>
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed">What should be in the document submitted by the
participants? <i class="fa fa-minus-circle"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
If you are interested in participation, please submit a two to three-page position paper using the
publication version of the ACM Master Article Template
(https://chi2025.acm.org/chi-publication-formats/).<br>
We encourage your position paper to focus on at least one of the areas which would be discussed
during the workshop – (a) modalities, approaches, or methods applied for foot augmentation, (b)
design and fabrication of interfaces to provide such augmentations, (c) design challenges and
guidelines, or should present another area you believe should be discussed. The paper should briefly
introduce yourself, an overview of what you believe is important and needs discussion in your chosen
area, and you are highly encouraged to present your own work in this context.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed">Will the submitted paper be published or
displayed on the website? <i class="fa fa-minus-circle"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
The submitted paper will be only displayed on the <i>Walking the Future</i> workshop website.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">Do I need to attend the workshop after
submitting an abstract? <i class="fa fa-minus-circle"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
At least one author of an accepted position paper must attend the workshop.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">What should I do if I am facing problem during
submission? <i class="fa fa-minus-circle"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
Please send an email to nsabnis[at]mpi-inf.mpg.de with the clear details about the issue you
are facing.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<!-- <div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-info">
<img src="img/logo.png" alt="TheEvenet">
<p>In alias aperiam. Placeat tempore facere. Officiis voluptate ipsam vel eveniet est dolor et totam porro. Perspiciatis ad omnis fugit molestiae recusandae possimus. Aut consectetur id quis. In inventore consequatur ad voluptate cupiditate debitis accusamus repellat cumque.</p>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="fa fa-angle-right"></i> <a href="#">Home</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">About us</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">Services</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">Terms of service</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="fa fa-angle-right"></i> <a href="#">Home</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">About us</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">Services</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">Terms of service</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
A108 Adam Street <br>
New York, NY 535022<br>
United States <br>
<strong>Phone:</strong> +1 5589 55488 55<br>
<strong>Email:</strong> info@example.com<br>
</p>
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div> -->
<div class="container">
<div class="copyright">
CHI'25 Walking the Future is maintained by <strong>Dennis Wittchen</strong>.
</div>
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=TheEvent
-->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-angle-up"></i></a>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/venobox/venobox.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Contact Form JavaScript File -->
<!-- <script src="contactform/contactform.js"></script> -->
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>