mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			440 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			440 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h2>{% trans Activation %}</h2>
 | 
						|
 | 
						|
{% if validlink %}
 | 
						|
{% blocktrans trimmed %}
 | 
						|
Your account have successfully been activated. You can now <a href="{{ login_url }}">log in</a>.
 | 
						|
{% endblocktrans %}
 | 
						|
{% else %}
 | 
						|
{% blocktrans trimmed %}
 | 
						|
The link was invalid. The token may have expired. Please send us an email to activate your account.
 | 
						|
{% endblocktrans %}
 | 
						|
{% endif %}
 | 
						|
{% endblock %}
 |