diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-02-08 18:39:49 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-02-08 18:39:49 -0800 |
| commit | 6bc114dfac19db6977eca316d851ca1ba35bce2e (patch) | |
| tree | b7c08a84037061c43b092a90e0121cd224ec7d19 /templates | |
| parent | 6885cc099cb47aa10226cf55c21b95ab24a8e76d (diff) | |
add scalable svg icons
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/templates/index.html b/templates/index.html index 4b98bdc..9790869 100644 --- a/templates/index.html +++ b/templates/index.html @@ -20,29 +20,25 @@ <div class='buttons-container'> <div class='button'> <label for='load-img-input'> - Add - <img src='plus.png' title='Add images'/> + <img src='/static/img/plus-circle.svg' title='Add images'/> </label> <input id='load-img-input' type='file' accept='image/*' multiple/> </div> <div class='button'> <label for='reset-list-input'> - R - <img src='reset.png' title='Reset list'> + <img src='/static/img/x-circle.svg' title='Reset list'> </label> <input id='reset-list-input' type='button' /> </div> <div class='button'> <label for='export-input'> - E - <img src='export.png' title='Export'> + <img src='/static/img/download.svg' title='Export'> </label> <input id='export-input' type='button' /> </div> <div class='button'> <label for='import-input'> - I - <img src='import.png' title='Import'/> + <img src='/static/img/upload.svg' title='Import'/> </label> <input id='import-input' type='file' accept='.json' multiple/> </div> @@ -53,10 +49,10 @@ </div> </section> <div class="top-container"> - <img id='trash' src='trash_bin.png' title='Delete image (drag it over here)'> + <img id='trash' src='/static/img/trash.svg' title='Delete image (drag it over here)'> <div class='button'> <label for='toggle-layout'> - <img src='toggle_layout.png' title='Toggle Layout'/> + <img src='/static/img/layout.svg' title='Toggle Layout'/> </label> <input id='toggle-layout' type='button'/> </div> |
