-
Notifications
You must be signed in to change notification settings - Fork 370
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (93 loc) · 3.12 KB
/
index.html
File metadata and controls
97 lines (93 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Intel Sustainability Summit Check-In</title>
<!-- Add Font Awesome CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Hero section with Intel branding -->
<div class="hero">
<div class="hero-content">
<img src="img/intel-logo.svg" alt="Intel Logo" class="intel-logo" />
<h1>Team Sustainability Summit</h1>
<div class="hero-divider"></div>
<p>
<i class="fas fa-leaf"></i> Check-in system for sustainability event
attendees
</p>
</div>
</div>
<!-- Attendance tracking -->
<div class="attendance-tracker">
<div class="attendance-header">
<i class="fas fa-users"></i>
Attendance: <span id="attendeeCount">0</span>/50
</div>
<div class="progress-container">
<div id="progressBar" class="progress-bar"></div>
</div>
</div>
<div class="container">
<!-- Feedback message -->
<p id="greeting"></p>
<!-- Check-in form -->
<form class="check-in" id="checkInForm">
<label for="attendeeName" class="form-label">Attendee Check-In</label>
<div class="form-group">
<div class="input-wrapper">
<input
type="text"
id="attendeeName"
name="attendeeName"
placeholder="Enter name..."
required
/>
<select id="teamSelect" name="team" required>
<option value="" disabled selected>Select Team...</option>
<option value="water">Team Water Wise</option>
<option value="zero">Team Net Zero</option>
<option value="power">Team Renewables</option>
</select>
</div>
<button type="submit" id="checkInBtn">
<i class="fas fa-user-check"></i> Check In
</button>
</div>
</form>
<!-- Team stats -->
<div class="team-stats">
<h3>Team Attendance</h3>
<div class="teams-grid">
<div class="team-card water">
<span class="team-name">🌊 Team Water Wise</span>
<span class="team-count" id="waterCount">0</span>
</div>
<div class="team-card zero">
<span class="team-name">🌿 Team Net Zero</span>
<span class="team-count" id="zeroCount">0</span>
</div>
<div class="team-card power">
<span class="team-name">⚡ Team Renewables</span>
<span class="team-count" id="powerCount">0</span>
</div>
</div>
</div>
</div>
<footer class="footer">
© 2025 Intel •
<a
href="https://www.intel.com/content/www/us/en/corporate-responsibility/2030-goals.html"
class="footer-link"
>Sustainability Goals</a
>
</footer>
<script src="script.js"></script>
</body>
</html>