mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 08:22:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% comment %}
 | 
						|
SPDX-License-Identifier: GPL-3.0-or-later
 | 
						|
{% endcomment %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="card bg-body">
 | 
						|
    <h3 class="card-header text-center">
 | 
						|
        {% trans "Account activation" %}
 | 
						|
    </h3>
 | 
						|
    <div class="card-body">
 | 
						|
        <p>
 | 
						|
            {% trans "An email has been sent. Please click on the link to activate your account." %}
 | 
						|
        </p>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 |