-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.06 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jello Board</title>
<link rel="stylesheet" href="styles.css">
<script type="module" src="index.js"></script>
</head>
<body>
<header>
<div class="logo-container">
<img src="jello.png" alt="Jello Logo" class="logo">
</div>
<div class="button-group">
<button id="import-btn">+ Import</button>
<button id="add-column-btn">+ Add Column</button>
</div>
</header>
<div id="board"></div>
<div id="import-modal" class="modal">
<div class="modal-content">
<span class="close-modal">×</span>
<h2>Import Cards</h2>
<p>Enter one card per line. All cards will be added to the leftmost column.</p>
<textarea id="import-textarea" placeholder="Enter cards here, one per line..."></textarea>
<button id="import-submit">Import Cards</button>
</div>
</div>
</body>
</html>