decentralized and customizable links page on top of atproto
ligo.at
atproto
link-in-bio
python
uv
1<!doctype html>
2<html>
3 <head>
4 <meta charset="utf-8" />
5 <title>login — ligo.at</title>
6 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
7 <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" />
8 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" />
9 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
10 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" />
11 <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32.png') }}" />
12 <link rel="icon" type="image/png" sizes="48x48" href="{{ url_for('static', filename='favicon-48.png') }}" />
13 </head>
14 <body>
15 <div class="wrapper login">
16 <header>
17 <h1>ligo.at</h1>
18 <span class="tagline">log in to your account</span>
19 </header>
20 <form action="{{ url_for('auth_login') }}" method="post">
21 <label>
22 <span>Handle</span>
23 <input type="text" name="username" placeholder="username.example.com" autocapitalize="off" spellcheck="false" required />
24 </label>
25 <span class="faded caption">
26 Use your AT Protocol handle to log in.
27 If you're unsure you can
28 <a href="{{ url_for('oauth.oauth_start', authserver='https://bsky.social') }}" rel="nofollow">
29 log in with Bluesky
30 </a>.
31 </span>
32 <input type="submit" value="continue" />
33 </form>
34 <footer>
35 <p>
36 <a href="/">home</a>
37 </p>
38 {% include "_footerlinks.html" %}
39 </footer>
40 </div>
41 <!-- .wrapper -->
42 </body>
43</html>