Coverage for ivatar/ivataraccount/templates/email_confirmed.html: 100%

20 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-03-28 00:10 +0000

1{% extends 'base.html' %} 

2{% load i18n %} 

3  

4{% block title %}{% trans 'Email confirmation' %} - Libravatar{% endblock title %} 

5  

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> 

19  

20<h4>{% trans 'Your email address was successfully confirmed!' %}</h4> 

21  

22{% include '_import_photo_form.html' %} 

23  

24<div style="height:40px"></div> 

25{% endblock content %}