pssecret-web/index.html

20 lines
583 B
HTML
Raw 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>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="form-container">
<textarea id="secretInput" placeholder="Psst... what's it?"></textarea>
<button id="shareButton">Share</button>
</div>
<div id="spinner" class="spinner hidden"></div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>