alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
appview: login page improvements
author
Anirudh Oppiliappan
date
1 year ago
(Mar 13, 2025, 4:20 PM +0200)
commit
81420b7b
81420b7ba4470e4795c8921ab991cad89bf12060
parent
053fdd74
053fdd740bbebe4b219596cf6eaa7d4c03c91d46
+21
-2
1 changed file
Expand all
Collapse all
Unified
Split
appview
pages
templates
user
login.html
+21
-2
appview/pages/templates/user/login.html
Reviewed
···
16
16
<h1 class="text-center text-2xl font-semibold italic">
17
17
tangled
18
18
</h1>
19
19
+
<h2 class="text-center text-xl italic">
20
20
+
tightly-knit social coding.
21
21
+
</h2>
19
22
<form
20
20
-
class="w-full"
23
23
+
class="w-full mt-4"
21
24
hx-post="/login"
22
25
hx-swap="none"
23
26
hx-disabled-elt="this"
···
25
28
<div class="flex flex-col">
26
29
<label for="handle">handle</label>
27
30
<input type="text" id="handle" name="handle" required />
31
31
+
<span class="text-xs text-gray-500 mt-1">
32
32
+
You need to use your
33
33
+
<a href="https://bsky.app">Bluesky</a> handle to log
34
34
+
in.
35
35
+
</span>
28
36
</div>
29
37
30
38
<div class="flex flex-col mt-2">
···
35
43
name="app_password"
36
44
required
37
45
/>
46
46
+
<span class="text-xs text-gray-500 mt-1">
47
47
+
Generate an app password
48
48
+
<a
49
49
+
href="https://bsky.app/settings/app-passwords"
50
50
+
target="_blank"
51
51
+
>here</a
52
52
+
>.
53
53
+
</span>
38
54
</div>
39
55
40
56
<button
···
46
62
</button>
47
63
</form>
48
64
<p class="text-sm text-gray-500">
49
49
-
Join our IRC channel: <a href="https://web.libera.chat/#tangled"><code>#tangled</code> on Libera Chat</a>.
65
65
+
Join our IRC channel:
66
66
+
<a href="https://web.libera.chat/#tangled"
67
67
+
><code>#tangled</code> on Libera Chat</a
68
68
+
>.
50
69
</p>
51
70
<p id="login-msg" class="error w-full"></p>
52
71
</main>