pssecret-web/index.html

21 lines
670 B
HTML
Raw Permalink Normal View History

2025-01-09 12:31:40 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Secret Share</title>
2025-01-09 12:47:59 +00:00
<link rel="stylesheet" href="static/styles.css">
2025-01-09 12:31:40 +00:00
</head>
<body>
<div class="container">
<div class="form-container">
<textarea id="secretInput" placeholder="Psst... what's it?"></textarea>
<button id="shareButton">Share</button>
<button id="sendToButton" class="hidden">Send to...</button>
2025-01-09 12:31:40 +00:00
</div>
<div id="spinner" class="spinner hidden"></div>
</div>
2025-01-09 12:47:59 +00:00
<script type="module" src="static/app.js"></script>
2025-01-09 12:31:40 +00:00
</body>
</html>