forked from yardimli/SmartCodePrompts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal-progress.html
More file actions
13 lines (13 loc) · 584 Bytes
/
modal-progress.html
File metadata and controls
13 lines (13 loc) · 584 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- SmartCodePrompts/modal-progress.html -->
<dialog id="progress_modal" class="modal" data-backdrop="static" data-keyboard="false">
<div class="modal-box">
<h3 class="font-bold text-lg" id="progress-modal-title">In Progress...</h3>
<div class="py-4">
<p id="progress-modal-text" class="mb-2 text-sm break-all">Initializing...</p>
<progress class="progress progress-primary w-full" id="progress-modal-bar" value="0" max="100"></progress>
</div>
<div class="modal-action">
<button class="btn" id="progress-modal-stop-button">Stop</button>
</div>
</div>
</dialog>