remove ruckus.webp

pull/31/head
Aevann1 2022-11-29 07:25:17 +02:00
parent d00e27d178
commit ed5b3dc4bb
5 changed files with 2 additions and 13 deletions

View File

@ -95,7 +95,3 @@ pre {
h5.post-title a:visited {
color: #7a7a7a !important;
}
.empty-state-img {
filter: brightness(99);
}

View File

@ -4063,11 +4063,6 @@ ul.comment-section {
.footer a:hover, .footer a:focus, .footer a:active {
text-decoration: underline;
}
.empty-state-img {
width: 200px;
opacity: 0.35;
filter: brightness(0);
}
.border-top {
border-top: 1px solid var(--gray-400) !important;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

View File

@ -38,7 +38,7 @@ def activate(v:User):
abort(403)
if user.is_activated and user.email == email:
return render_template("message_success.html", v=v, title="Email already verified.", message="Email already verified."), 404
abort(400, "Email already verified!")
user.email = email
user.is_activated = True

View File

@ -3,10 +3,8 @@
{% block pagetype %}message-success{% endblock %}
{% block content %}
<div class="text-center py-7 py-md-8">
<img loading="lazy" src="/i/ruckus.webp" class="empty-state-img mb-3" alt="success state">
<img class="mb-3" alt=":#marseyparty:" loading="lazy" src="/e/marseyparty.webp">
<div class="font-weight-bold text-muted mb-4">{{title}}</div>
<p class="text-muted">{{message}}</p>
</div>
{% endblock %}