Coverage for ivatar/ivataraccount/templates/email_confirmed.html: 100%
21 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-03 23:07 +0000
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-03 23:07 +0000
1{% extends 'base.html' %}
2{% load i18n %}
4{% block title %}{% trans 'Email confirmation' %} - Libravatar{% endblock title %}
6{% block content %}
7<style>
8input[type=checkbox] {display:none}
9input[type=checkbox] + label:before {
10font-family: "Font Awesome 7 Free";
11font-weight: 900;
12display: inline-block;
13}
14input[type=checkbox] + label:before {content: "\f0c8"}
15input[type=checkbox] + label:before {letter-spacing: 5px}
16input[type=checkbox]:checked + label:before {content: "\f14a"}
17input[type=checkbox]:checked + label:before {letter-spacing: 3px}
18</style>
19<h1>{% trans 'Email confirmation' %}</h1>
21<h4>{% trans 'Your email address was successfully confirmed!' %}</h4>
23{% include '_import_photo_form.html' %}
25<div style="height:40px"></div>
26{% endblock content %}