-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapccn.html
More file actions
753 lines (654 loc) · 28.2 KB
/
apccn.html
File metadata and controls
753 lines (654 loc) · 28.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AP-CCN26</title>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@600;700&display=swap"
rel="stylesheet">
<!-- Font Awesome for map icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<style>
body {
margin: 0;
font-family: 'Inter', sans-serif;
color: #333;
background-color: #fdfdfd;
}
h1,
h2,
h3,
h4 {
font-family: 'Montserrat', sans-serif;
}
header {
background: #1C2541;
color: #fff;
padding: 1.5rem;
}
header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin: 0;
font-size: 1.6rem;
font-weight: 700;
}
nav a {
color: #fff;
text-decoration: none;
margin-left: 1rem;
font-weight: 400;
}
nav a:hover {
text-decoration: underline;
}
.hero {
position: relative;
background: url('images/Singapore_header_freepik.jpg') center/cover no-repeat;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 600;
color: white;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
padding: 4rem 1rem;
}
.hero .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
z-index: 1;
}
.hero h2,
.hero p {
position: relative;
z-index: 2;
}
/* Register Button in Hero */
.register-btn,
#submitPoster {
display: inline-block;
margin-top: 1.5rem;
padding: 0.8rem 2rem;
font-size: 1rem;
font-weight: 600;
color: #1C2541;
background-color: #E9A547;
border-radius: 25px;
text-decoration: none;
transition: background 0.3s;
position: relative;
z-index: 2;
text-shadow: none;
border: none;
/* remove default button border */
box-shadow: none;
/* remove default shadow */
outline: none;
/* remove focus outline */
cursor: pointer;
}
.register-btn:hover {
background-color: #D39E34;
}
#submitPoster:hover {
background-color: #D39E34;
}
.section {
padding: 2rem 1rem;
max-width: 1000px;
margin: 0 auto;
box-sizing: border-box;
}
.section h3 {
font-size: 2rem;
margin-bottom: 1rem;
text-align: center;
}
.section p {
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
text-align: center;
font-size: 1rem;
}
.details,
.schedule,
.contacts {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
row-gap: 1rem;
justify-content: center;
justify-items: center;
}
.detail-item,
.schedule-item,
.contact-item {
background: #fff;
border-radius: 15px;
/* rounded corners */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
width: 100%;
/* full width of container */
max-width: 600px;
/* caps at 600px on large screens */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin: 1rem auto;
/* center card on page */
box-sizing: border-box;
/* ensures padding is included in width */
}
.detail-item h4,
.schedule-item h4 {
font-size: 1.2rem;
font-weight: 600;
margin: 0 0 1rem 0;
}
.detail-item p,
.schedule-item p,
.contact-item p {
font-size: 0.95rem;
color: #555;
margin: 0.5rem 0;
text-align: center;
}
.map-link a {
text-decoration: none;
color: #1C2541;
font-weight: 500;
margin-left: 0.3rem;
}
.map-link a:hover {
text-decoration: underline;
}
footer {
background: #1C2541;
color: #fff;
padding: 2rem 1rem;
text-align: center;
font-size: 0.9rem;
}
footer a {
color: #E9A547;
text-decoration: none;
}
.fixed-register-tab {
position: fixed;
bottom: 30px;
right: 30px;
background-color: #E9A547;
color: #1C2541 !important;
padding: 12px 24px;
border-radius: 50px;
font-weight: 700;
text-decoration: none;
font-size: 1rem;
box-shadow: 0 10px 25px rgba(233, 165, 71, 0.4);
z-index: 9999;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fixed-register-tab:hover {
transform: translateY(-5px) scale(1.05);
background-color: #D39E34;
box-shadow: 0 15px 30px rgba(233, 165, 71, 0.5);
}
@media (max-width: 600px) {
.fixed-register-tab {
bottom: 20px;
right: 20px;
padding: 10px 20px;
font-size: 0.9rem;
}
}
/* Speaker grid inside one card */
.speaker-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
align-items: stretch;
}
.speaker {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
}
.speaker img {
width: 110px;
height: 110px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 0.8rem;
}
.speaker h5 {
margin: 0.4rem 0 0.2rem 0;
font-size: 1rem;
font-weight: 600;
}
.speaker p strong {
font-size: 0.82rem;
font-weight: 500;
color: #444;
}
.speaker p {
margin: 0.12rem 0;
font-size: 0.82rem; /* Institute 变小 */
color: #777;
}
/* Responsive: 2 per row on small screens */
@media (max-width: 900px) {
.speaker-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.speaker em {
display: block;
margin-top: 0.7rem;
padding-top: 0.5rem;
border-top: 1px solid #eee;
font-size: 0.82rem;
color: #666;
font-style: italic;
}
/* Placeholder for speakers without photos */
.photo-placeholder {
width: 110px;
height: 110px;
border-radius: 50%;
background-color: #eee;
color: #999;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.2rem;
font-weight: 600;
margin: 0 auto 0.8rem auto;
font-family: 'Montserrat', sans-serif;
}
.speaker img,
.photo-placeholder {
flex-shrink: 0;
}
/* Slightly smaller institute text for very long institute names */
.speaker.small-institute p {
font-size: 0.76rem;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>AP-CCN26</h1>
<nav>
<a href="#about">About</a>
<a href="#venue">Venue</a>
<a href="#speakers">Speakers</a>
<a href="#program">Program</a>
<a href="#registration">Registration</a>
<a href="#committee">Committee</a>
<a href="#sponsor">Sponsor</a>
</nav>
</div>
</header>
<section class="hero">
<div class="overlay"></div>
<h2>2026 Asia-Pacific Computational and Cognitive Neuroscience Conference (AP-CCN26)</h2>
<p>July 27-28, 2026<br>Singapore</p>
<a href="https://forms.office.com/r/CtLx5CBiS4" target="_blank" class="register-btn">Register Now</a>
</section>
<section id="about" class="section">
<h3>About AP-CCN26</h3>
<p>
Computational neuroscience has advanced rapidly in recent years owing to the availability of the sheer
amount of neural recordings and connectomic data. It is the perfect time for developing a collaborative
forum that promotes research in computational neuroscience in the Asia-Pacific area. After a thorough
discussion among several researchers from different Asian countries, we (the organization committee) decided
to host the Asia-Pacific Computational and Cognitive Neuroscience (AP-CCN) conference. The mission of the
AP-CCN Conference is to promote computational neuroscience, and to facilitate interactions and
collaborations between theoreticians and experimentalists.
</p>
</section>
<section id="venue" class="section">
<h3>Venue</h3>
<div class="detail-item">
<h4>MD6 LT35, National University of Singapore</h4>
<p>14 Medical Dr, Singapore 117599</p>
<p class="map-link">
<i class="fa-solid fa-location-dot"></i>
<a
href="https://www.google.com/maps/place/MD6+-+Centre+for+Translational+Medicine/@1.2953483,103.7816915,17z/data=!3m1!4b1!4m6!3m5!1s0x31da1a51363c2731:0xc4627bf2b73714bf!8m2!3d1.2953483!4d103.7816915!16s%2Fg%2F11byts17wh?entry=ttu&g_ep=EgoyMDI1MTAyMi4wIKXMDSoASAFQAw%3D%3D">Google
Maps</a>
</p>
</div>
</section>
<section id="speakers" class="section">
<h3>Speakers</h3>
<p>
AP-CCN 2026 brings together leading researchers, invited speakers, and emerging scholars to share recent advances in computational and cognitive neuroscience.
</p>
<!-- Keynote Speakers -->
<h4 style="margin-top:2.5rem; text-align:center;">Keynote Speakers</h4>
<div class="details">
<div class="detail-item" style="max-width:900px;">
<div class="speaker-grid">
<div class="speaker">
<img src="images/speakers/Benjamin-Becker.png" alt="Benjamin Becker">
<h5>Benjamin Becker</h5>
<p><strong>Professor</strong></p>
<p>The University of Hong Kong,Hong Kong SAR</p>
<p><em>Topic: Innovative Strategies to Decode and Regulate Affective Experiences in Humans</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Yu-Fu.jpg" alt="Yu FU">
<h5>Yu FU</h5>
<p><strong>Senior Principal Investigator</strong></p>
<p>A*STAR, <br>Singapore</p>
<p><em>Topic: The role of Gut-brain Communication in Feeding Regulation</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Lu-Bao-Liang.jpg" alt="Bao-Liang Lu">
<h5>Bao-Liang Lu</h5>
<p><strong>Professor</strong></p>
<p>Shanghai Jiao Tong University, China</p>
<p><em>Topic: Affective Brain-Computer Interfaces: Characteristics, Algorithms and Application</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Wang-Xiao-Jing.jpg" alt="Xiao-Jing Wang">
<h5>Xiao-Jing Wang</h5>
<p><strong>Professor</strong></p>
<p>New York University, <br>USA</p>
<p><em>Topic: Functional Specialization Versus Distributed Cognition in a Large-scale Neocortex</em></p>
</div>
</div>
</div>
</div>
<!-- Invited Speakers -->
<!-- Invited Speakers -->
<h4 style="margin-top:3rem; text-align:center;">Invited Speakers</h4>
<div class="details">
<div class="detail-item" style="max-width:900px;">
<div class="speaker-grid">
<div class="speaker no-photo small-institute">
<img src="images/speakers/Tatsuya-Haga(1).jpg" alt="Jin Hoon Kim">
<h5>Tatsuya Haga</h5>
<p><strong>Tenure-track Researcher</strong></p>
<p>National Institute of Information and Communications Technology, Japan</p>
<p><em>Topic: Modeling Spatial and Conceptual Representation Learning in Hippocampus</em></p>
</div>
<div class="speaker no-photo small-institute">
<img src="images/speakers/Jin-Hoon-Kim.jpg" alt="Jin Hoon Kim">
<h5>Jin Hoon Kim</h5>
<p><strong>Assistant Professor</strong></p>
<p>Korea Advanced Institute of Science & Technology, Korea</p>
<p><em>Topic: Biological Neural Network-inspired Memristive Nanomaterial Networks for Neuromorphic Edge Computation</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Tomoki-Kurikawa.jpg" alt="Tomoki Kurikawa">
<h5>Tomoki Kurikawa</h5>
<p><strong>Associate Professor</strong></p>
<p>Future University Hakodate, Japan</p>
<p><em>Topic: Spontaneous Neural Activity: Its Functional Roles in Response and Learning</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Songting-Li.jpg" alt="Songting Li">
<h5>Songting Li</h5>
<p><strong>Professor</strong></p>
<p>Shanghai Jiao Tong University, China</p>
<p><em>Topic: From Biological Dendritic Computation to Artificial Neural Networks</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Camilo(1).jpg" alt="Camilo Libedinsky">
<h5>Camilo Libedinsky</h5>
<p><strong>Associate Professor</strong></p>
<p>National University of Singapore, Singapore</p>
<p><em>Topic: Inferring Latent Behavioral Strategies and Neural Connectivity with RNN Models</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Aditya-Nair.jpg" alt="Aditya Nair">
<h5>Aditya Nair</h5>
<p><strong>Assistant Professor</strong></p>
<p>Nanyang Technological University, Singapore</p>
<p><em>Topic: Discovering Neural Manifolds of Emotion & Social Intelligence Using AI.</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Jiahou-Poh.jpg" alt="Jiahou Poh">
<h5>Jiahou Poh</h5>
<p><strong>Research Assistant Professor</strong></p>
<p>National University of Singapore, Singapore</p>
<p><em>Topic: Neuromodulatory Regulation of Neural Context for Motivated Learning and Adaptive Memory</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Chun-Shu-Wei.jpg" alt="Chun-Shu Wei">
<h5>Chun-Shu Wei</h5>
<p><strong>Associate Professor</strong></p>
<p>National Yang Ming Chiao Tung University, Taiwan</p>
<p><em>Topic: Explainable AI for EEG-Based Brain Disorder Detection and Monitoring</em></p>
</div>
</div>
</div>
</div>
</section>
<!-- Young Speakers -->
<h4 style="margin-top:3rem; text-align:center;">Young Speakers</h4>
<div class="details">
<div class="detail-item" style="max-width:900px;">
<div class="speaker-grid">
<div class="speaker small-institute">
<img src="images/speakers/baopinglei.png" alt="baopinglei">
<h5>Pinglei Bao</h5>
<p>Peking University, China</p>
<p><em>Topic: Triple-N Dataset: large-scale recording of non-human primate neural responses to natural scenes</em></p>
</div>
<div class="speaker small-institute">
<img src="images/speakers/Heng-Chang.JPG" alt="Heng-Chang">
<h5>Heng Chang</h5>
<p>National Tsing Hua University, Taiwan</p>
<p><em>Topic: Vertical Bessel Lightsheet Microscopy Enables Intravital Whole-Brain High-Resolution Imaging in Adult Drosophila</em></p>
</div>
<div class="speaker">
<img src="images/speakers/photo.jpg" alt="Zijian">
<h5>Zijian Dong</h5>
<p>National University of Singapore, Singapore</p>
<p><em>Topic: Learning Representations of the Human Brain: Neuroimaging Foundation Model for Decoding Brain Disorders, Cognition, and Behavior</em></p>
</div>
<div class="speaker small-institute">
<img src="images/speakers/Photo_Jeungmin_Lee.jpeg" alt="Jeungmin">
<h5>Jeungmin Lee</h5>
<p>Korea Advanced Institute of Science and Technology, Korea</p>
<p><em>Topic: Whether and Whom: Dissociable Neural Systems for Valuation and Audience Selection in Social Disclosure</em></p>
</div>
<div class="speaker small-institute">
<img src="images/speakers/Liuyushun.png" alt="Liuyushun">
<h5>Yushun Liu</h5>
<p>Institute of Molecular Biology, Academia Sinica, Taiwan</p>
<p><em>Topic: CASTLE: A behavioral microscope illuminated by foundation models enabling training-free behavioral discovery</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Yuanyuan_Mi.jpg" alt="Yuanyuan_Mi">
<h5>Yangyuan Mi</h5>
<p>Tsinghua University, China</p>
<p><em>Topic: Neural Correlates of Serial Dependence: Synaptic Short-term Plasticity Orchestrates Repulsion and Attraction</em></p>
</div>
<div class="speaker small-institute">
<img src="images/speakers/Seki.jpg" alt="Seki">
<h5>Daiki Sekizawa</h5>
<p>University of Tokyo, Japan</p>
<p><em>Topic: Oscillatory Mode Decomposition of Thermodynamic Dissipation and Its Application to Neural Dynamics</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Avatar_v1_square.png" alt="Sina">
<h5>Sina Mansour Lakouraj</h5>
<p>National University of Singapore, Singapore</p>
<p><em>Topic: From Graph Spectra to Brain Growth Charts: Multiscale Normative Mapping of the Human Cerebral Cortex</em></p>
</div>
<div class="speaker">
<img src="images/speakers/Weizhang.png" alt="Weizhang">
<h5>Wei Zhang</h5>
<p>Nanyang Technological University, Singapore</p>
<p><em>Topic: Understanding Brain Dynamics in Language Learning and Production</em></p>
</div>
</div>
</div>
</div>
<section id="program" class="section">
<h3>Program</h3>
<h4>
<p style="text-align: center"><a href="./APCCN25/AP-CCN25-booklet.pdf">Program Booklet (Available Soon)</a>
</p>
</h4>
<div class="schedule">
<div class="schedule-item">
<h4>July 27th (Mon)</h4>
<p><em>-- Available Soon --</em></p>
<!-- <p>13:00-14:00, Shun-ichi Amari (Teikyo U) [Keynote]</p>
<p>14:00-15:00, Yu-Wei Wu (Academia Sinica)</p>
<p>15:00-15:30, Coffee break</p>
<p>15:30-16:30, James Pang (Monash U)</p>
<p>16:30-17:30, Tianchu Zeng (NUS)</p>
<p>17:30-18:30, Poster presentation</p> -->
</div>
<div class="schedule-item">
<h4>July 28th (Tue)</h4>
<p><em>-- Available Soon --</em></p>
<!-- <p>09:00-10:00, Juan Helen Zhou (NUS)</p>
<p>10:00-10:30, Coffee break</p>
<p>10:30-11:30, Yu Takagi (NIT)</p>
<p>11:30-12:30, James Roberts (QIMR Berghofer)</p>
<p>12:30-13:30, Lunch meeting</p>
<p>13:30-14:30, Jun Tani (OIST)</p>
<p>14:30-15:30, Ching-Che Charng (NTHU)</p>
<p>15:30-16:00, Coffee break</p>
<p>16:00-17:00, Choong-Wan Woo (SKKU)</p>
<p>17:30-19:30, Reception (Invited speakers)</p> -->
</div>
</div>
</section>
<section id="registration" class="section">
<h3>Registration</h3>
<div class="detail-item"
style="max-width: 600px; display: flex; flex-direction: column; align-items: center; justify-content: center;">
<p>
Kindly register below for your attendance.<br>
<span style="font-size:0.98rem;">
Registration is open to all attendees. Abstract submission is optional.
</span><br>
<em>You will be redirected to a Microsoft Registration Form.</em>
</p>
<a href="https://forms.office.com/r/CtLx5CBiS4" target="_blank" class="register-btn">Register Now</a>
</div>
</section>
<!-- <section id="poster-submission" class="section">
<h3>Poster Submission</h3>
<div class="detail-item" style="display: flex; flex-direction: column; align-items: center;">
<p>Please upload your poster file for submission.<br>
File naming: <strong>Name - PosterTitle.filetype</strong></p>
<p><em>Accepted file types: .pdf, .jpg, .jpeg, .ppt, .pptx. Please ensure your file is virus-free.</em></p>
<input type="file" id="posterFile" accept=".pdf,.jpg,.jpeg,.ppt,.pptx">
<p id="file-info" style="margin-top:0.5rem;"></p>
<button id="submitPoster" class="register-btn" style="margin-top: 1rem;">Submit Poster</button>
</div>
</section>
<script>
const posterInput = document.getElementById('posterFile');
const fileInfo = document.getElementById('file-info');
const submitBtn = document.getElementById('submitPoster');
let selectedFile = null;
posterInput.addEventListener('change', (e) => {
selectedFile = e.target.files[0];
if (selectedFile) {
fileInfo.innerHTML = `
Selected file: <strong>${selectedFile.name}</strong>
<button type="button" id="removeFile" class="register-btn" style="background-color:#D9534F; margin-left:0.5rem; padding:0.3rem 0.8rem; font-size:0.9rem;">Remove</button>
`;
document.getElementById('removeFile').addEventListener('click', () => {
posterInput.value = '';
selectedFile = null;
fileInfo.innerHTML = '';
});
}
});
submitBtn.addEventListener('click', () => {
if (!selectedFile) {
alert('Please choose a file before submitting.');
return;
}
if (!confirm(`You are about to submit: ${selectedFile.name}.`)) {
return;
}
// Send file to Google Apps Script Web App
const formData = new FormData();
formData.append('file', selectedFile);
fetch('YOUR_WEB_APP_DEPLOYED_URL', { method: 'POST', body: formData })
.then(res => res.text())
.then(res => {
alert(res);
// Reset input after successful upload
posterInput.value = '';
selectedFile = null;
fileInfo.innerHTML = '';
})
.catch(err => alert('Error uploading file: ' + err));
});
</script> -->
<section id="committee" class="section">
<h3>Organizing Committee</h3>
<p>In alphabetical order of the last names</p>
<div class="details">
<div class="detail-item">
<ul style="list-style: none; padding: 0; margin: 0;">
<li><a href="https://www.newcastle.edu.au/profile/michael-breakspear">Michael Breakspear</a>,
University of Newcastle, Australia</li>
<li><a href="https://bcs.kaist.ac.kr/sub020101/view/id/118">Jaeseung Jeong</a>, KAIST, Korea</li>
<li><a href="https://life.nthu.edu.tw/~cclo/">Chung-Chuan Lo</a>, National Tsing Hua University,
Taiwan</li>
<li><a href="https://cbs.riken.jp/en/faculty/t.toyoizumi/">Taro Toyoizumi</a>, RIKEN Center for
Brain Science, Japan</li>
<li><a href="https://as.nyu.edu/faculty/xiaojing-wang.html">Xiao-Jing Wang</a>, New York University,
USA</li>
<li><a href="https://discovery.nus.edu.sg/3278-juan-helen-zhou">Juan Helen Zhou</a>, National
University of Singapore, Singapore</li>
</ul>
</div>
</div>
</section>
<section id="sponsor" class="section">
<h3>Sponsor</h3>
<div class="details">
<div class="detail-item">
<ul style="list-style: none; padding: 0; margin: 0;">
<p><em>-- Available Soon --</em></p>
<!--<li><a href="https://www.secomzaidan.jp/">SECOM Science and Technology Foundation</a><br><img src="./APCCN25/SECOM.gif"></li><br>
<li><a href="https://cbs.riken.jp/en/">RIKEN Center for Brain Science</a><br><img src="./APCCN25/CBS.jpg"></li> -->
</ul>
</div>
</div>
</section>
<footer>
<p>© 2026 AP-CCN. All rights reserved. | <a href="#top">Back to Top</a></p>
</footer>
<a href="https://forms.office.com/r/CtLx5CBiS4" target="_blank" class="fixed-register-tab">
<i class="fa-solid fa-paper-plane"></i> Register Now
</a>
</body>
</html>