Show/Hide Button for private key in Options page. Move experimental page into separate sub-folder. Move delegation wizard to sub-folder. Move permission page into separate folder. Basic functional SwiftUI look for the app. Beginning to define the main app view. NavigationStack and Privacy Policy Show App Icon on main screen. Getting Started: macOS Getting Started: iPhone Getting Started: iPad Removing old default UIKit code. Added "No Thanks" toggle to the relay reminder. Clearly indicate in the Settings page when a profile is a delegated profile. Changed recommended relays to all public relays. Use x-cloak in all the places. Fix bundle display name to use capital N. Added copy button to pubkey in settings. Window default size. Updating event kind list. Allow events to be copied by clicking on them in the event log. Tweaking the colors for a more purple-ish look. Added Tips and Tricks view to native app. Move utilities modules into separate folder. Rename event_log files to event_history to escape some content blockers. Renamed Event Log to Event History in the UI as well.
59 lines
2.0 KiB
HTML
59 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script defer src="delegation.build.js"></script>
|
|
<link rel="stylesheet" href="/options.build.css">
|
|
|
|
<title>Delegation Wizard</title>
|
|
</head>
|
|
|
|
<body x-data="delegated" class="text-fuchsia-900 p-3.5 lg:p-32">
|
|
<h1 class="text-3xl lg:text-6xl font-bold md:text-center">New Delegated Profile</h1>
|
|
|
|
<p class="mt-6">
|
|
A delegated user, as laid out in the
|
|
<a href="https://github.com/nostr-protocol/nips/blob/master/26.md" @click.prevent="openNip($event)">NIP-26
|
|
specification</a>,
|
|
is a user that is authorized to sign events for a different user. Additional limits can be
|
|
put on the delegated account, such as time limits.
|
|
</p>
|
|
|
|
<p class="mt-3">
|
|
This may be useful if you wish to keep your main key stored safely offline, but still post as that user
|
|
with a throwaway key.
|
|
</p>
|
|
|
|
<div class="section">
|
|
<h2 class="section-header">Delegator</h2>
|
|
<p class="text-small italic">The secure account to be delegated.</p>
|
|
|
|
<div class="mt-3">
|
|
<label for="delegator">Delegator Private Key</label>
|
|
<br>
|
|
<input type="text" class="input" x-model="privKey" :class="validKeyClass" autocapitalize="off" autocomplete="off"
|
|
spellcheck="off">
|
|
<p class="text-xs italic">This is not stored, but only used to sign a token which is stored instead.</p>
|
|
</div>
|
|
|
|
<div class="mt-3">
|
|
<label for="duration">Delegated Duration</label>
|
|
<br>
|
|
<select x-model.number="duration" class="input">
|
|
<option value="1">1 day</option>
|
|
<option value="7">7 days</option>
|
|
<option value="30">30 days</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
<button class="button" @click.prevent="goBack">Back</button>
|
|
<button class="button" @click.prevent="save" :disabled="!isKeyValid">Save</button>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |