| 1 |
@page "/Storage" |
| 2 |
<PageTitle>Storage</PageTitle> |
| 3 |
<PageScript Src="./Components/Pages/Storage.razor.js"></PageScript> |
| 4 |
|
| 5 |
<main> |
| 6 |
<Panel> |
| 7 |
<LegendContent> |
| 8 |
Stores |
| 9 |
<button id="newStoreButton">New</button> |
| 10 |
</LegendContent> |
| 11 |
<ChildContent> |
| 12 |
<div id="storeList" class="grid-stores"> |
| 13 |
</div> |
| 14 |
</ChildContent> |
| 15 |
</Panel> |
| 16 |
|
| 17 |
<dialog id="inputDialog"> |
| 18 |
<Panel LegendId="inputTitle"> |
| 19 |
<form method="dialog" id="inputForm"> |
| 20 |
<p> |
| 21 |
<input id="inputDialogInput" type="text"/> |
| 22 |
</p> |
| 23 |
<div class="flex-row"> |
| 24 |
<button type="submit">Confirm</button> |
| 25 |
<button id="cancelInputButton" type="reset">Cancel</button> |
| 26 |
</div> |
| 27 |
</form> |
| 28 |
</Panel> |
| 29 |
</dialog> |
| 30 |
|
| 31 |
<dialog id="confirmDialog"> |
| 32 |
<Panel Legend="Are you sure?"> |
| 33 |
<form method="dialog" id="confirmForm"> |
| 34 |
<p id="confirmMessage"> |
| 35 |
</p> |
| 36 |
<div class="flex-row"> |
| 37 |
<button type="submit">Confirm</button> |
| 38 |
<button id="cancelConfirmButton" type="reset">Cancel</button> |
| 39 |
</div> |
| 40 |
</form> |
| 41 |
</Panel> |
| 42 |
</dialog> |
| 43 |
|
| 44 |
<div id="openedStores"> |
| 45 |
</div> |
| 46 |
<Log/> |
| 47 |
</main> |