馃 distributed transcription service thistle.dunkirk.sh
at v0.1.0 850 B view raw
1<!DOCTYPE html> 2<html lang="en"> 3 4<head> 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>Settings - Thistle</title> 8 <link rel="icon" 9 href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>馃</text></svg>"> 10 <link rel="stylesheet" href="../styles/main.css"> 11 12 <style> 13 main { 14 max-width: 64rem; 15 } 16 </style> 17</head> 18 19<body> 20 <header> 21 <div class="header-content"> 22 <a href="/" class="site-title"> 23 <span>馃</span> 24 <span>Thistle - Settings</span> 25 </a> 26 <auth-component></auth-component> 27 </div> 28 </header> 29 30 <main> 31 <user-settings></user-settings> 32 </main> 33 34 <script type="module" src="../components/auth.ts"></script> 35 <script type="module" src="../components/user-settings.ts"></script> 36</body> 37 38</html>