Coverage for ivatar/ivataraccount/templates/email_confirmed.html: 100%
20 statements
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-26 00:11 +0000
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-26 00:11 +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: FontAwesome;
11display: inline-block;
12}
13input[type=checkbox] + label:before {content: "\f096"}
14input[type=checkbox] + label:before {letter-spacing: 5px}
15input[type=checkbox]:checked + label:before {content: "\f046"}
16input[type=checkbox]:checked + label:before {letter-spacing: 3px}
17</style>
18<h1>{% trans 'Email confirmation' %}</h1>
20<h4>{% trans 'Your email address was successfully confirmed!' %}</h4>
22{% include '_import_photo_form.html' %}
24<div style="height:40px"></div>
25{% endblock content %}