diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2025-09-28 14:15:46 +0300 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2025-09-28 14:15:46 +0300 |
| commit | 645dd2b87927b7efadedb6dd5232d36a7800ce28 (patch) | |
| tree | a510862ef65f5fe0e44624751dd47e66b582b9ed /static/index.html | |
| parent | b0c76dcc159ead3d67314da3a71d60bad9385991 (diff) | |
| download | network-645dd2b87927b7efadedb6dd5232d36a7800ce28.tar.zst | |
Structured editor works
Diffstat (limited to 'static/index.html')
| -rw-r--r-- | static/index.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/static/index.html b/static/index.html index 0e87967..5bea6f8 100644 --- a/static/index.html +++ b/static/index.html @@ -79,11 +79,13 @@ </div> <div class="card"> + <!-- Editor mode toggle and containers will be inserted here by JavaScript --> <div class="form-group"> <label class="form-label">Configuration File</label> <select id="configSelect" class="select"></select> </div> + <!-- Raw editor elements (will be moved to rawEditorContainer by JavaScript) --> <div class="form-group"> <label class="form-label">File Contents</label> <textarea id="cfgEditor" class="textarea" spellcheck="false"></textarea> @@ -96,7 +98,7 @@ </label> </div> - <div style="display: flex; gap: var(--spacing-s); align-items: center;"> + <div class="config-actions"> <button class="button secondary" id="validateConfig"> Validate Configuration </button> @@ -105,6 +107,7 @@ </div> </section> + <section id="panelLogs"> <div class="card"> <div class="card-header"> |
