aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/www/demos/input.html
blob: 0c37c294d6a5126d020f343867c7810bd020993d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: layout.vto
name: Inputs
---

<main>

<p>
Lorem ipsum dolor <label>Inline input: <input type=text></label> sit amet, consectetur adipiscing elit.

<p>
Block input:

<form class="box rows">
    <p>
    <label for="blockinput">My input</label>
    <input type="text" id="blockinput">

    <p>
    <label for="blockinput2">My other input</label>
    <input type="text" id="blockinput2">
</form>

</main>