Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions pages/index/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,31 @@ a:hover {
margin-bottom: 2rem;
text-align: left;
}

.trust summary {
cursor: pointer;
}

.trust summary::marker {
color: var(--accent);
}

.trust summary:hover {
text-decoration: underline;
}

.trust details p {
margin-top: 0.6rem;
}

.trust pre {
margin: 0.6rem 0;
padding: 0.6rem 0.75rem;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 0.375rem;
overflow-x: auto;
font-size: 0.8rem;
white-space: pre-wrap;
word-break: break-all;
}
9 changes: 6 additions & 3 deletions pages/index/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ <h1>Your passwords.<br>Your storage.<br>Your browser.</h1>
</div>

<div class="trust">
<strong>This file is identical to what is served at keepass-web.app.</strong>
Every file on the hosted site is a verbatim copy of a published release artifact.
Download the release, verify the published checksum, and trust what you audit.
<details>
<summary><strong>Verify before you trust.</strong> Tampering would leave a public, permanent trace.</summary>
<p>Every release is cryptographically attested and logged to a public transparency log (Sigstore). Verify any downloaded file was built by this project's Release workflow, not hand-assembled:</p>
<pre><code>gh attestation verify &lt;file&gt; --repo keepass-web/source-application</code></pre>
<p>Requires the <a href="https://cli.github.com/">GitHub CLI</a>. Prefer to build it yourself from source instead? See <a href="https://github.com/keepass-web/source-application/blob/main/docs/REPRODUCING.md">Reproducing a Build</a>.</p>
</details>
</div>
</main>
<!--FOOTER-->
Expand Down