Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ <h2 id="createDeckModalTitle">Create New Deck</h2>
<div id="createCardModal" class="hidden modal-overlay">
<div class="modal-content">
<button class="close-btn" onclick="createCardModal.classList.add('hidden')">&times;</button>
<h2 id="createCardModalTitle">Add New Card</h2>
<h2 id="createCardModalTitle">Create New Card</h2>
<form id="create-card-form">
<div class="mb-4 text-left">
<label for="card-question" class="block text-sm font-bold mb-2">Question:</label>
<textarea id="card-question" placeholder="Enter question" rows="3"></textarea>
<textarea id="card-question" placeholder="Provide your question" rows="3"></textarea>
</div>
<div class="mb-4 text-left">
<label for="card-answer" class="block text-sm font-bold mb-2">Answer:</label>
<textarea id="card-answer" placeholder="Enter answer" rows="3"></textarea>
<textarea id="card-answer" placeholder="Input the answer" rows="3"></textarea>
</div>
<div class="mb-4 text-left">
<label for="card-image-url" class="block text-sm font-bold mb-2">Image URL (Optional):</label>
Expand Down