Self-hosted, federated location sharing app and server that prioritizes user privacy and security
end-to-end-encryption location-sharing privacy self-hosted federated
at auth 501 B view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <script type="module" src="./settings.ts"></script> 6 <link rel="stylesheet" href="./settings.css" /> 7 </head> 8 9 <body> 10 <div class="card"> 11 <div class="actions" x-data="settingsPageState"> 12 <h3>Settings</h3> 13 14 <button class="btn-primary" @click="goto('home')"> 15 Back to Home 16 </button> 17 18 <button class="btn-secondary" @click="await debugLogout()"> 19 Signout 20 </button> 21 </div> 22 </div> 23 </body> 24</html>