~cytrogen/masto-fe

ref: 85a2c62a93f40807d01db1d38dfb3386e85d88c1 masto-fe/public/login.html -rw-r--r-- 2.2 KiB
85a2c62a — nicole mikołajczyk port 'Add toast with option to open post after publishing in web UI' 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Login | Masto-FE (🦥 flavour)</title>
    <meta content="width=device-width, initial-scale=1" name="viewport">
    <link rel="stylesheet" media="all" href="/packs/css/core/common.css" />
    <link rel="stylesheet" media="all" href="/packs/css/flavours/glitch/login.css" />
    <script src="/auth.js"></script>
</head>

<body>
    <div class="login-container">
        <header>
            <img class="mascot" alt src="images/mascot.svg" />
        </header>
        <main>
            <div class="login">
                <input class="instance" id="instance" placeholder="Instance URL" aria-label="Instance URL" value="" onkeypress="if (event.keyCode == 13) auth()">
                <button type="submit" class="button" id="btn" onclick="auth()">
                    <span id="message">Authorize</span>
                </button>
            </div>
            <div class="content">
                <p>
                    This is a standalone version of the Mastodon front-end that offers compatibility with GoToSocial instances. It is based
                    on <a href="https://iceshrimp.dev/iceshrimp/masto-fe-standalone" rel="nofollow">Iceshrimp's Masto-FE Standalone</a>,
                    which is itself a fork of <a href="https://github.com/glitch-soc/mastodon" rel="nofollow">Mastodon Glitch Edition</a>,
                    which in turn forks <a href="https://github.com/mastodon/mastodon/" rel="nofollow">Mastodon</a>. Phew!
                </p>
                <p>
                    The application is completely client-side, meaning everything happens in the browser on your machine. It does not store
                    information anywhere else than your browser's local storage.
                </p>
            </div>
        </main>
        <footer class="link-footer">
            <p>
                <strong>Masto-FE (🦥 flavour)</strong>
                <span aria-hidden="true"> · </span>
                <a href="https://codeberg.org/superseriousbusiness/masto-fe-standalone" rel="noopener noreferrer" target="_blank">
                    Source code
                </a>
            </p>
        </footer>
    </div>
</body>

</html>