dequoter/frontend/index.html

35 lines
1.4 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>dequoter</title>
</head>
<body>
<div id="app">
<div class="editor-mountpoint"></div>
<div class="status-bar deemphasized" data-controller="status">Cmd+P: open command palette. Shift+Cmd+P: rerun last command.</div>
</div>
2026-03-14 10:52:13 +00:00
<dialog id="prompt-dialog" data-controller="prompt">
<div class="dialog-body">
<label class="prompt-label" data-prompt-target="label"></label>
<div class="prompt-input">
<input data-prompt-target="input" type="text"
data-action="keyup.enter->prompt#submit keydown.esc->prompt#dismiss">
</div>
</div>
</dialog>
<dialog id="command-dialog" data-controller="commands"
data-action="dq-showcommands@window->commands#showCommands dq-rerunlastcommand@window->commands#rerunLastCommand">
<div class="dialog-body">
<div class="command-input">
<input data-commands-target="commandInput" type="text" placeholder="Enter command"
data-action="keyup.enter->commands#runCommand keyup.down->commands#focusSelect keydown.esc->commands#dismissDialog keyup->commands#handleKeyup">
</div>
<select multiple class="command-options" data-commands-target="commandSelect" data-action="keyup.enter->commands#runCommand"></select>
</div>
</dialog>
<script src="./src/main.js" type="module"></script>
</body>
</html>