welcome.html
    
    ASCII text
        
            1
            {% extends "mail.html" %} 
        
            2
            {% block content %} 
        
            3
                <h1>Hello, {{ username }}!</h1> 
        
            4
                <p> 
        
            5
                    Welcome to the roundabout. Make yourself at home. 
        
            6
                </p> 
        
            7
                <p> 
        
            8
                    You've just registered for an account at this server. If it wasn't you, write to us and we'll remove this email from our database. 
        
            9
                </p> 
        
            10
            {% endblock %} 
        
            11