Added save project dialogue

This commit is contained in:
NSSure
2021-08-14 11:20:53 -04:00
parent d97b6f5ca5
commit f9a1cfc3d3
10 changed files with 73 additions and 33 deletions

View File

@@ -37,6 +37,7 @@
{{> credits-popup}}
{{> settings-popup}}
{{> pixel-export-popup}}
{{> save-project-popup}}
</div>
<script src="/pixel-editor/pixel-editor.js"></script>

View File

@@ -8,7 +8,7 @@
<input id="file-name" autocomplete="off" />
</div>
<div class="export-actions">
<div class="popup-actions">
<button class="default" id = "export-confirm">Export</button>
</div>
</div>

View File

@@ -0,0 +1,14 @@
<div id="save-project" class="save-project">
<button class="close-button">{{svg "x.svg" width="20" height="20"}}</button>
<h1>Save Project</h1>
<div class="save-project-configuration">
<h2>File Name</h2>
<input id="lpe-file-name" autocomplete="off" />
</div>
<div class="popup-actions">
<button class="default" id = "save-project-confirm">Save</button>
</div>
</div>