-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
32 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assessment Engine</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>PROFILER ENGINE</h1>
<div id="progress-bar">Step 1 of 3</div>
</header>
<form id="assessment-form">
<div id="question-container">
</div>
<p id="error-msg" class="hidden">ERROR: Please select an option to proceed.</p>
<button type="submit" id="next-btn">NEXT STEP →</button>
</form>
<div id="results-dashboard" class="hidden">
<h2>ANALYSIS COMPLETE</h2>
<div id="loading-spinner">Processing data through AI...</div>
<div id="final-scores" class="hidden"></div>
<button id="restart-btn" type="button">START OVER</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>