-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMembers.html
More file actions
152 lines (132 loc) · 7.22 KB
/
Members.html
File metadata and controls
152 lines (132 loc) · 7.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DASH LAB - Members</title>
<!-- External Libraries -->
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<!-- Critical Helper: Defined in Head so inline 'onerror' can find it immediately -->
<script>
window.getImg = function(path) {
if (!path) return '';
// Cleans leading slashes to ensure paths work relative to the root in VS Code
return path.startsWith('/') ? path.substring(1) : path;
};
</script>
<!-- Custom Shared Resources -->
<link rel="stylesheet" href="css/style.css">
<script src="js/common.js"></script>
<!-- Members Scripts -->
<script src="js/membersdata.js"></script>
<script src="js/members.js" defer></script>
</head>
<body class="bg-gray-50 flex flex-col min-h-screen">
<!-- Navbar injected by common.js -->
<div class="container mx-auto px-4 pt-8 max-w-6xl flex-grow">
<!-- Research Professor -->
<div class="member-section-card">
<h5 class="member-header">Research Professors/Post-Doc Researcher</h5>
<div id="research-professors-container" class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- JS Injects Here -->
</div>
</div>
<!-- Ph.D. Students -->
<div class="member-section-card">
<h5 class="member-header">Ph.D. Students</h5>
<div id="phd-students-container" class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- JS Injects Here -->
</div>
</div>
<!-- Master's Students -->
<div class="member-section-card">
<h5 class="member-header">Masters Students</h5>
<div id="ms-students-container" class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- JS Injects Here -->
</div>
</div>
<!-- Undergraduate Students (Now Dynamic) -->
<div class="member-section-card">
<h5 class="member-header">Undergraduate Students</h5>
<div id="ug-students-container" class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- JS Injects Members Here -->
<!-- Recruitment Trigger Card -->
<div id="join-lab-trigger" class="member-card cursor-pointer border-2 border-dashed border-blue-200 bg-blue-50/30 hover:bg-blue-50 hover:border-blue-400 transition-all flex flex-col items-center justify-center p-8 group">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<i class="fas fa-user-plus text-2xl text-blue-600"></i>
</div>
<strong class="text-blue-700 text-lg">Join the Lab</strong>
<p class="text-[10px] text-gray-400 font-bold uppercase tracking-widest mt-1">Open Positions</p>
</div>
</div>
</div>
<!-- Master Thesis Supervision -->
<div class="member-section-card alumni-table">
<h5 class="member-header">Master Thesis/Capstone Project Supervision</h5>
<table class="w-full">
<thead>
<tr>
<th data-label="Name">Name</th>
<th data-label="Major" class="w-1/4">Major</th>
<th data-label="Employment" class="w-1/4">Current Employment</th>
<th data-label="Topic" class="w-2/5">Topic</th>
</tr>
</thead>
<tbody id="master-supervision-table-body">
<!-- JS Injects Here -->
</tbody>
</table>
</div>
<!-- Alumni -->
<div class="member-section-card alumni-table">
<h5 class="member-header">Alumni</h5>
<table class="w-full">
<thead>
<tr>
<th data-label="Name">Name</th>
<th data-label="Major">Major</th>
<th data-label="Employment">Current employment</th>
</tr>
</thead>
<tbody id="alumni-table-body">
<!-- JS Injects Here -->
</tbody>
</table>
</div>
</div>
<!-- RECRUITMENT MODAL
Class 'member-popup' matches Section 13 in style.css to prevent collisions with index.html
-->
<div id="join-modal" class="member-popup">
<div class="modal-content relative overflow-hidden">
<button id="close-modal" class="absolute top-4 right-4 text-gray-400 hover:text-gray-600 transition-colors">
<i class="fas fa-times text-xl"></i>
</button>
<div class="text-center">
<div class="w-20 h-20 bg-gray-50 rounded-full flex items-center justify-center mx-auto mb-6 border border-gray-100 shadow-inner">
<img src="img/dash_logo/Dashlab_logo.jpg" alt="DASH Lab" class="w-12 opacity-80" onerror="this.style.display='none'">
<i class="fas fa-graduation-cap text-blue-500 text-3xl" id="fallback-icon"></i>
</div>
<h2 class="text-2xl font-bold text-gray-800 mb-2">Join DASH Lab</h2>
<p class="text-gray-500 text-sm mb-8 leading-relaxed px-4">We are looking for students who can code and have a deep passion for AI research.</p>
<div class="space-y-4 text-left px-2">
<div class="bg-blue-50 p-4 rounded-xl border border-blue-100">
<p class="text-[10px] font-black text-blue-700 uppercase mb-1 tracking-widest">Research Focus</p>
<p class="text-sm text-blue-900 font-medium leading-tight">Computer Vision, Anomaly Detection, NLP, and AI Security.</p>
</div>
<div class="bg-gray-50 p-4 rounded-xl border border-gray-100">
<p class="text-[10px] font-black text-gray-500 uppercase mb-1 tracking-widest">How to Apply</p>
<p class="text-sm font-bold text-gray-800 mb-1">Email your resume to:</p>
<a href="mailto:undergraduate@g.skku.edu" class="text-blue-600 font-mono text-sm hover:underline">undergraduate@g.skku.edu</a>
</div>
</div>
<button id="modal-confirm" class="w-full mt-8 bg-blue-600 text-white font-bold py-3.5 rounded-xl hover:bg-blue-700 transition-all shadow-lg shadow-blue-200 active:scale-95">
Close Window
</button>
</div>
</div>
</div>
<!-- Footer injected by common.js -->
</body>
</html>