Split the sign-in footer over two lines

The build and where to find it were running together on one line. The
name and version now stand on their own, with the two links beneath:

    ihasmail v2.16.61
    ihasmail.org · AGPL-3.0 source

"by" is gone with the restructuring. It was doing attribution work that
the line no longer needs -- ihasmail.org is a LINUXexpert.org project
site, so pointing at it says the same thing without the preposition, and
the README badge is where the credit properly lives.

One <p> with a break rather than two paragraphs: .foot carries a 20px
margin-top, which a second one would repeat as a gap under the button.
This commit is contained in:
2026-08-26 10:48:14 -07:00
parent ecc6c42bf1
commit 48805c8072
+11 -5
View File
@@ -96,12 +96,18 @@ export function LoginPage() {
</button> </button>
<p className="foot"> <p className="foot">
{/* {/*
The version sits next to the source link on purpose: the AGPL's The version sits directly above the source link on purpose: the
offer is for the source of *this* build, and a version makes that AGPL's offer is for the source of *this* build, and naming the
offer something a person can actually act on. It also means a bug build is what makes that offer something a person can act on. It
report names the build without anyone having to sign in to find it. also means a bug report can name the build without anyone having
to sign in to find it.
One <p> with a break rather than two: .foot carries a 20px
margin-top, which a second paragraph would repeat as a gap.
*/} */}
ihasmail v{APP_VERSION} by <a href="https://ihasmail.org" target="_blank" rel="noopener noreferrer">ihasmail.org</a> ihasmail v{APP_VERSION}
<br />
<a href="https://ihasmail.org" target="_blank" rel="noopener noreferrer">ihasmail.org</a>
{" · "} {" · "}
<a href={sourceUrl} target="_blank" rel="noopener noreferrer">AGPL-3.0 source</a> <a href={sourceUrl} target="_blank" rel="noopener noreferrer">AGPL-3.0 source</a>
</p> </p>