new-app.html
    
    ASCII text
        
            1
            {% extends "default.html" %} 
        
            2
            {% block title %}Sign Up | Echo Tracker{% endblock %} 
        
            3
            {% block content %} 
        
            4
                <main> 
        
            5
                    <h1>Create an App</h1> 
        
            6
                    {% with messages = get_flashed_messages() %} 
        
            7
                        {% if messages %} 
        
            8
                            {% for message in messages %} 
        
            9
                                <div class="alert">{{ message }}</div> 
        
            10
                            {% endfor %} 
        
            11
                        {% endif %} 
        
            12
                    {% endwith %} 
        
            13
                    <form class="stacked-form" method="post"> 
        
            14
                        <input type="text" name="name" placeholder="App Name"> 
        
            15
                        <button type="submit">Create</button> 
        
            16
                    </form> 
        
            17
                </main> 
        
            18
            {% endblock %}