-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.html
More file actions
54 lines (54 loc) · 2.68 KB
/
Copy pathmanager.html
File metadata and controls
54 lines (54 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ImmuneIT</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/homepage.css" />
<link rel="stylesheet" href="./css/manager.css" />
<script src="./js/database.js" type="module" defer></script>
<script src="./js/submit.js" defer></script>
<script src="./js/manager.js" defer></script>
<link rel="icon" href="./assets/logo-invert.png" />
</head>
<body>
<div id="header">
<div id="headerLeft">
<img id="logo" src="./assets/logo.png" alt="ImmuneIT Logo" />
<a class="headerLink" href="./index.html">ImmuneIT</a>
</div>
<div id="headerRight">
<a class="headerLink" href="https://github.com/Jacob-Guglielmin/ImmuneIT">GitHub</a>
<a class="headerLink" href="./about.html">About</a>
<a class="headerLink" href="./signin.html">Sign In</a>
</div>
</div>
<div id="rootContainer">
<span id="interfaceHeader">Hello, Manager</span>
<div id="interfaceContainer">
<div id="employeeTracker">
<div id="fieldContainer">
<textarea class="dbField" id="dbQuestion" placeholder="Question"></textarea>
<input class="dbField" id="dbAnswer1" placeholder="Option 1">
<input class="dbField" id="dbAnswer2" placeholder="Option 2">
<input class="dbField" id="dbAnswer3" placeholder="Option 3">
<input class="dbField" id="dbAnswer4" placeholder="Option 4">
<input class="dbField" id="dbCorrect" placeholder="Correct #">
<input class="dbField" id="dbCategory" placeholder="Category">
<input class="dbField" id="dbPostCorrect" placeholder="Correct message">
<input class="dbField" id="dbPostIncorrect" placeholder="Incorrect message">
<button id="dbSubmit">Submit</button>
</div>
</div>
<div id="employeesContainer">
<h1>Your Top Employees:</h1>
</div>
<div id="goToQuizContainer">
<a id="goToQuizButton" href="./generator.html" class="hoverEffect">AI Generator →</a>
</div>
</div>
</div>
</body>
</html>