-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 877 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Collaborative Notes</title>
<link rel="stylesheet" href="/style.css">
<script src="https://unpkg.com/[email protected]"></script>
</head>
<body>
<div class="container">
<header>
<h1>Collaborative Notes</h1>
</header>
<form id="noteForm" hx-post="/add-note" hx-target="#notes" hx-swap="beforeend">
<input type="text" id="noteTitle" name="title" placeholder="Note Title" required>
<textarea id="noteContent" name="content" rows="4" placeholder="Note Content" required></textarea>
<button type="submit">Add Note</button>
</form>
<div id="notes" class="notes">
<!-- Notes will be dynamically added here -->
</div>
</div>
</body>
</html>