add modal form fields and buttons

This commit is contained in:
Yisroel Baum 2026-04-24 10:22:45 +03:00
parent 52ed08b8a9
commit b50413f7c9
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -9,6 +9,17 @@
</ul>
<div id="create-plan-modal" hidden>
<h2>Create plan</h2>
<label>Name
<input class="plan-name" type="text" />
</label>
<label>Start date
<input class="plan-date-start" type="date" />
</label>
<label>End date
<input class="plan-date-end" type="date" />
</label>
<button class="save-plan">Save</button>
<button class="cancel-plan">Cancel</button>
</div>
<script src="/js/home.js"></script>
</body>