Get the things going

Report a typo

Arrange the blocks of code in the correct order. Users should firstly enter their name and then surname, finally submit this data to the server.

Reorder lines using drag or arrows. Adjust indentation with left buttons
                <p><input type="text" name="lastname" required/></p>
              
                <p><input type="submit" value="submit"/></p>
              
                {% extends "layout.html" %}
              
                <form action="/greet" method="post">
              
                {% block body %}
              
                <p>Firstname:</p>
              
                {% endblock %}
              
                </form>
              
                <p><input type="text" name="firstname" required/></p>
              
                <p>Lastname:</p>
              
___

Create a free account to access the full topic