summaryrefslogtreecommitdiff
path: root/tests/html5_forms.ur
blob: 2fa5c5c2f7172580db86552a58bfcbd0d438e68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fun handler r = return <xml><body>
</body></xml>

fun main () =
    return <xml><body>
      <form>
        <textbox{#A} required placeholder="bobby"/>
        <textbox{#B} placeholder="soggy" autofocus/>

        <submit action={handler}/>
      </form>
    </body></xml>