21 lines
		
	
	
	
		
			743 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
	
		
			743 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{% extends "site_base.html" %}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{% load i18n %}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{% block head_title %}{% trans "Confirm Email" %}{% endblock %}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{% block content %}
							 | 
						||
| 
								 | 
							
								    <div class="row">
							 | 
						||
| 
								 | 
							
								        <div class="col-md-5">
							 | 
						||
| 
								 | 
							
								            <form method="post" action="{% url "account_confirm_email" key=confirmation.key %}">
							 | 
						||
| 
								 | 
							
								                <legend>{% trans "Confirm Email" %}</legend>
							 | 
						||
| 
								 | 
							
								                <fieldset>
							 | 
						||
| 
								 | 
							
								                    {% csrf_token %}
							 | 
						||
| 
								 | 
							
								                    <p>{% blocktrans with email=confirmation.email_address.email %}Confirm email address <b>{{ email }}</b>?{% endblocktrans %}</p>
							 | 
						||
| 
								 | 
							
								                    <button type="submit" class="btn btn-primary">{% trans "Confirm" %}</button>
							 | 
						||
| 
								 | 
							
								                </fieldset>
							 | 
						||
| 
								 | 
							
								            </form>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								{% endblock %}
							 |