52 lines
1.8 KiB
HTML
Executable File
52 lines
1.8 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Pick a Title!</title>
|
|
<link rel="stylesheet" href="css.css">
|
|
</head>
|
|
<body>
|
|
<h1>Choose Your Favorite Title</h1>
|
|
|
|
<div id="auth_section">
|
|
<div id="auth_method_select">
|
|
<p>How would you like to sign in?</p>
|
|
<button id="matrix_auth_btn" onclick="goToMatrixLogin()">Sign in with Matrix</button>
|
|
<button id="nostr_auth_btn" onclick="showNostrAuth()">Sign in with Nostr</button>
|
|
</div>
|
|
|
|
<div id="nostr_auth_section" style="display:none;">
|
|
<div id="nip07_badge" class="info-box" style="display:none;">
|
|
Nostr extension connected
|
|
</div>
|
|
|
|
<div id="auth_npub_row">
|
|
<label for="npub_input">Nostr Public Key:</label>
|
|
<input type="text" id="npub_input" placeholder="npub1... or connect extension">
|
|
<button id="connect_btn" onclick="connectNip07()">Connect AlbyHub</button>
|
|
</div>
|
|
|
|
<button id="auth_btn" onclick="authenticate()">Sign In to Vote</button>
|
|
<a id="link_link" href="link">First time? Link your npub</a>
|
|
|
|
<div id="auth_status"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="vote_section" style="display:none;">
|
|
<div id="logged_in_as"></div>
|
|
<button id="sign_out_btn" onclick="signOut()">Sign Out</button>
|
|
|
|
<h2>Suggestions:</h2>
|
|
<ul id="suggestion_list">
|
|
<!-- Populated Dynamically Via JS -->
|
|
</ul>
|
|
|
|
<button id="submit_vote" onclick="submitVote()">⛵⛵⛵⛵⛵⛵⛵⛵⛵</button>
|
|
</div>
|
|
|
|
<script src="js.js"></script>
|
|
</body>
|
|
</html>
|