123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE HTML>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Halcyon Share Settings</title>
- <link rel="shortcut icon" href="favicon.ico">
- <link rel="stylesheet" href="settings.css" media="all">
- <script>
- if(window.matchMedia("(prefers-color-scheme: dark)").matches)
- document.write('<link rel="stylesheet" href="settings_dark.css" media="all">');
- </script>
- </head>
- <body>
- <header id="header">
- <div class="header_nav_wrap">
- <nav class="header_left_box">
- <ul class="header_nav_list">
- <li id="header_nav_item_home" class="header_nav_item">
- <a href="#" id="home_nav">
- <img src="icon-96.png" style="width:32px">
- </a>
- </li>
- </ul>
- </nav>
- <nav class="header_right_box">
- <ul class="header_nav_list">
- <li class="header_nav_item toot_button_wrap">
- <a href="https://www.halcyon.social">
- <span>What is Halcyon ›</span>
- </a>
- </li>
- </ul>
- </nav>
- </div>
- </header>
- <main id="main">
- <div class="article_wrap">
- <div class="content first">
- <span class="putmessage"></span>
- <form id="statusform">
- <span class="pageheading">Halcyon Share Settings</span>
- <div class="settingsbox">
- <label for="instance">Halcyon instance URL</label>
- <input type="text" id="instance" placeholder="halcyon.example.com">
- </div>
- <div class="settingsbox">
- <label for="keeptweet">Create split button with Tweet and Toot</label>
- <div class="switch">
- <input type="checkbox" id="keeptweet">
- <div class="switch-btn">
- <span></span>
- </div>
- </div>
- </div>
- <button type="submit" class="toot_button">
- <div class="toot_button_label">
- <span>Save and close</span>
- </div>
- </button>
- </form>
- </div>
- </div>
- </main>
- <script src="settings.js"></script>
- </body>
- </html>
|