16 lines
		
	
	
		
			375 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			375 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block title %}Password Set{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <form>
 | 
						|
        <fieldset>
 | 
						|
            <legend>Password Set</legend>
 | 
						|
            <p>
 | 
						|
                Your password for <tt>{{ email }}</tt> has been set. You can
 | 
						|
                now <a href="/auth/login/">login</a>.
 | 
						|
            </p>
 | 
						|
        </fieldset>
 | 
						|
    </form>
 | 
						|
{% endblock %}
 |