-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwizard.html
More file actions
68 lines (62 loc) · 2.46 KB
/
wizard.html
File metadata and controls
68 lines (62 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AGENTS.md Wizard - Step-by-Step Generator</title>
<link rel="stylesheet" href="wizard-styles.css">
</head>
<body>
<div class="wizard-container">
<!-- Header with Reset Button -->
<div class="wizard-header">
<h1>AGENTS.md Wizard</h1>
<button id="resetBtn" class="btn btn-reset" title="Start over">↻ Reset</button>
</div>
<!-- Progress Bar -->
<div class="progress-section">
<div class="progress-bar">
<div class="progress-fill" id="progressFill"></div>
</div>
<div class="progress-text" id="progressText">Step 1 of 9</div>
</div>
<!-- Main Content Area -->
<div class="content-wrapper">
<!-- Form Steps Panel -->
<div class="steps-panel">
<!-- Navigation Buttons -->
<div class="step-navigation">
<button id="backBtn" class="btn btn-secondary" style="display: none;">
← Back
</button>
<button id="skipBtn" class="btn btn-ghost">
Skip
</button>
<button id="nextBtn" class="btn btn-primary">
Next →
</button>
</div>
<div id="stepContent">
<!-- Steps will be rendered here dynamically -->
</div>
</div>
<!-- Preview Panel -->
<div class="preview-panel">
<div class="preview-header">
<h3>Live Preview</h3>
<div class="preview-actions" style="display: none;" id="previewActions">
<button class="btn btn-sm btn-copy" id="copyPreviewBtn">Copy</button>
<button class="btn btn-sm btn-download" id="downloadPreviewBtn">Download</button>
</div>
</div>
<div class="preview-content" id="previewContent">
<div class="preview-placeholder">
<p>Your AGENTS.md file will appear here as you progress through the steps.</p>
</div>
</div>
</div>
</div>
</div>
<script src="wizard-app.js"></script>
</body>
</html>