snotes-deck/index.html

38 lines
973 B
HTML
Raw Normal View History

2024-04-07 21:31:08 +02:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Snotes Deck</title>
2024-04-07 21:31:08 +02:00
<script type="module" src="/src/main.ts" defer></script>
<style>
.logo.vite:hover {
filter: drop-shadow(0 0 2em #747bff);
}
.logo.typescript:hover {
filter: drop-shadow(0 0 2em #2d79c7);
}
</style>
</head>
<body>
<div class="container">
<h1>Snotes Deck Test</h1>
2024-04-07 21:31:08 +02:00
<form class="row" id="create-form">
<input id="create-input" placeholder="Note..." />
<input id="create-tag" placeholder="Tag..." />
2024-04-07 21:31:08 +02:00
<button type="submit">Save</button>
</form>
<p id="create-msg"></p>
2024-04-07 21:31:08 +02:00
<button class="row" id="show-notes-button">Refresh Notes</button>
2024-04-07 21:31:08 +02:00
<p style="white-space: pre-line" id="notes-list"></p>
</div>
</body>
</html>