42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<link rel="stylesheet" href="popup.css">
|
|
<script defer src="popup.build.js"></script>
|
|
</head>
|
|
|
|
<body x-data="popup">
|
|
<div class="profiles">
|
|
<label for="profile">Active Profile</label>
|
|
<div class="profile-buttons">
|
|
<select x-model.number="profileIndex" name="profile" id="profile">
|
|
<template x-for="(prof, index) in profileNames" :key="index">
|
|
<option x-text="prof" :value="index"></option>
|
|
</template>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="relay" x-show="relayCount < 1">
|
|
<span>
|
|
You do not have any relays setup for this profile. Would you like to add some recommended
|
|
relays now?
|
|
</span>
|
|
<br>
|
|
<button @click="await addRelays()">Add Relays</button>
|
|
</div>
|
|
|
|
<div class="help">
|
|
<button @click="await openOptions()">Settings</button>
|
|
</div>
|
|
|
|
<div class="disclaimer">
|
|
No user data is collected or transmitted.
|
|
All private keys are stored in the extension's sequestered local browser storage.
|
|
</div>
|
|
</body>
|
|
|
|
</html> |