{{!
    Form: What is your name?
!}}
{{> ../deep/welcome id = "welcome", tag = "h1", tail = '!' ~}}
<div>
    {{! Title !}}
    <h3>What is your name?</h3>

    {{! Form !}}
    <form>
        {{! Input name !}}
        Name: <input type="text" name="name" />
        {{! Input last name !}}
        <br/>Last name: <input type="text" name="lastname" />

        {{! Submit !}}
        <br/><p><input type="submit"></p></form>

    {{! Order and remove whitespace with comments !}}
</div>