mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-07-16 14:20:37 -04:00
feat: logic completed.
This commit is contained in:
parent
104849154f
commit
72997086cc
3 changed files with 84 additions and 24 deletions
|
@ -26,18 +26,21 @@
|
|||
</footer>
|
||||
</div>
|
||||
<dialog class="modal">
|
||||
<main>
|
||||
<div class="form">
|
||||
<form action="" >
|
||||
<input type="text" name="title" id="title">
|
||||
<input type="text" name="author" id="author">
|
||||
<button type="submit" id="submit-btn" class="btn">Submit</button>
|
||||
</form>
|
||||
<div class="form-header">
|
||||
<h1 class="form-header">Add Book</h1>
|
||||
<button class="btn close-btn">
|
||||
<span class="material-symbols-outlined">close</span>
|
||||
</button>
|
||||
</div>
|
||||
</main>
|
||||
<form action="" class="form">
|
||||
<input type="text" name="title" id="title">
|
||||
<input type="text" name="author" id="author">
|
||||
<div class="form-item">
|
||||
<label for="checkbox">Have you read the book?</label>
|
||||
<input type="checkbox" id="read-button">
|
||||
</div>
|
||||
<button type="submit" id="submit-btn" class="btn">Submit</button>
|
||||
</form>
|
||||
</dialog>
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue