Some checks failed
Go / build-and-release (push) Has been cancelled
- Add nsec-crypto.js library with Argon2id+AES-GCM encryption - Generate new nsec keys using secure system entropy - Encrypt nsec with password (~3 sec Argon2id derivation in Web Worker) - Add unlock flow for returning users with encrypted keys - Add deriving modal with live timer during key derivation - Auto-create default profile for new users with ORLY logo avatar - Fix NIP-42 auth race condition in websocket-auth.js - Improve header user profile display (avatar fills height, no truncation) - Add instant light/dark theme colors in HTML head - Add background box around username/nip05 in settings drawer - Update CLAUDE.md with nsec-crypto library documentation Files modified: - app/web/src/nsec-crypto.js: New encryption library - app/web/src/LoginModal.svelte: Key gen, encryption, unlock UI - app/web/src/nostr.js: Default profile creation - app/web/src/App.svelte: Header and drawer styling - app/web/public/index.html: Instant theme colors - CLAUDE.md: Library documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
768 B
HTML
35 lines
768 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
|
|
<title>ORLY?</title>
|
|
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
html, body {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
html, body {
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<link rel="stylesheet" href="/global.css" />
|
|
<link rel="stylesheet" href="/bundle.css" />
|
|
|
|
<script defer src="/bundle.js"></script>
|
|
</head>
|
|
|
|
<body></body>
|
|
</html>
|