-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
42 lines (37 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VS Code Setup Workflow</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div class="step-list workflow-card" id="stepList">
</div>
<div class="workflow-card">
<div id="start-over">
<button
class="action-btn back-btn"
onclick="window.workflowManager.startOverClick();"
>
Start over
</button>
</div>
<div id="workflowContent" style="display: none" class="step-content">
<div class="step-header">
<h1 class="step-title" id="stepTitle">Loading...</h1>
</div>
<div class="step-content" id="stepContent">
<p>Loading workflow content...</p>
</div>
<div class="actions" id="stepActions">
<!-- Action buttons will be inserted here -->
</div>
</div>
</div>
</div>
<script src="workflow.js"></script>
</body>
</html>