asklyphe/asklyphe-auth-frontend/templates/verify.html
husky 6fa292d1de
All checks were successful
/ build-all-services (push) Successful in 9m51s
add git hash to css + js + img for cache
this should invalidate the cache everytime we recompile the frontends on
a new git commit
2025-03-24 14:18:01 -07:00

27 lines
No EOL
793 B
HTML

{% extends "shell.html" %}
{% block title %}Verify Email{% endblock %}
{% block head %}
<link rel="stylesheet" href="/static/auth.css?git={{ git_commit }}"/>
{% endblock %}
{% block page %}
<div class="main">
<a id="alyphebig" href="https://asklyphe.com/">
<div id="lyphebig">
<div class="bent-surrounding">
<img id="lypheimg" src="/static/img/lyphebent.png?git={{ git_commit }}" alt="image of lyphe, our mascot!">
</div>
<div id="lyphetitle">
<img src="/static/img/logo.png?git={{ git_commit }}" alt="ask Lyphe!"/>
<p>the best search engine!</p>
</div>
</div>
</a>
<h1>verify email</h1>
{{ system_message }}
</div>
{% include "ui/footer.html" %}
{% endblock %}