-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardware-request.html
More file actions
112 lines (101 loc) · 4.1 KB
/
hardware-request.html
File metadata and controls
112 lines (101 loc) · 4.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Hardware Request | Commit Intranet</title>
<link rel="stylesheet" href="css/styles.css" />
<script src="js/scripts.js" defer></script>
</head>
<body>
<div class="layout">
<!-- Sidebar -->
<!-- Sidebar -->
<aside class="sidebar" aria-label="Department Navigation">
<div class="sidebar-header">
<img src="assets/commit-logo-white.svg" alt="Commit Logo" class="sidebar-logo" />
</div>
<nav>
<ul>
<h2>Departments</h2>
<li><a href="departments/hr.html">👥 HR</a></li>
<li><a href="departments/it.html">💻 IT Support</a></li>
<li><a href="departments/operations.html">📦 Operations</a></li>
<li><a href="departments/policy.html">📜 Policy</a></li>
<li><a href="development.html">💡 Development</a></li>
</ul>
</nav>
</aside>
<div class="main-content">
<header class="site-header">
<h1>Commit Intranet Hub</h1>
<nav class="topnav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="documents.html">Documents</a></li>
<li><a href="shoutouts.html">Shoutouts</a></li>
<li><a href="wiki.html">Wiki</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<div class="main-content">
<header class="site-header">
<h1>Hardware Request</h1>
<nav class="topnav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="documents.html">Documents</a></li>
<li><a href="shoutouts.html">Shoutouts</a></li>
<li><a href="wiki.html">Wiki</a></li>
<li><a href="hardware-request.html" class="active">Hardware Request</a></li>
</ul>
</nav>
</header>
<main class="container">
<form id="hardware-form" class="standard-form">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" required />
<label for="email">Email Address</label>
<input type="email" id="email" name="email" required />
<label for="department">Department</label>
<select id="department" name="department" required>
<option value="">-- Select --</option>
<option value="IT">IT</option>
<option value="HR">Human Resources</option>
<option value="Operations">Operations</option>
<option value="Policy">Policy</option>
<option value="Development">Development</option>
<option value="Other">Other</option>
</select>
<label for="hardware">Requested Hardware</label>
<input type="text" id="hardware" name="hardware" placeholder="e.g., MacBook Pro, monitor, headset" required />
<label for="justification">Justification / Comments</label>
<textarea id="justification" name="justification" rows="4" placeholder="Explain why the hardware is needed" required></textarea>
<button type="submit">Submit Request</button>
<p id="hardware-success" class="upload-success">Request submitted (simulation only).</p>
</form>
</main>
<footer class="site-footer">
<p>© 2025 The Commit Partnership. All rights reserved.</p>
</footer>
</div>
</div>
</body>
<div id="ai-chat-widget">
<button id="ai-toggle" aria-label="Open AI Assistant">🤖</button>
<div id="ai-chat-window" style="display: none;">
<div class="ai-chat-header">
<span>Commit AI Assistant</span>
<button id="ai-close">×</button>
</div>
<div class="ai-chat-body" id="ai-messages"></div>
<textarea id="ai-user-input" placeholder="Ask a question..."></textarea>
<button id="ai-send">Send</button>
</div>
</div>
</html>