frontend: Add footer

master
Simon Bruder 2022-07-16 19:13:39 +02:00
parent c79cb75a79
commit afd0a07147
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 17 additions and 0 deletions

View File

@ -40,6 +40,17 @@
</form> </form>
<div id="hash-container"><span id="hash"></span></div> <div id="hash-container"><span id="hash"></span></div>
<footer>
<p>
The hash is calculated in your browser
and never leaves your device.
</p>
<p>
This application is free software, released under the <a href="https://www.gnu.org/licenses/agpl-3.0.en.html"><code>AGPLv3</code></a>
(<a href="https://git.sbruder.de/simon/password-hash-self-service">Source code</a>).
</p>
</footer>
</div> </div>
<script type="module" src="app.js"></script> <script type="module" src="app.js"></script>

View File

@ -22,3 +22,9 @@ body {
font-family: monospace; font-family: monospace;
line-break: anywhere; line-break: anywhere;
} }
footer {
margin-top: 1em;
border-top: 1px solid black;
font-size: 14px;
}