summaryrefslogtreecommitdiff
path: root/tests/html/form_unicode_inputs.html
blob: e97db5eaeb2ffcad8798e27bdac3e70079483ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
    <head><title>form page</title></head>
    <body>
        <form method="POST" id="text_input_form">
            <input name="foo" type="text" value="Хармс">
            <input name="button" type="submit" value="Сохранить">
        </form>
        <form method="POST" id="radio_input_form">
            <input name="foo" type="radio" value="Хармс">
            <input name="foo" type="radio" value="Блок" checked>
            <input name="button" type="submit" value="Сохранить">
        </form>
        <form method="POST" id="checkbox_input_form">
            <input name="foo" type="checkbox" value="Хармс" checked>
            <input name="button" type="submit" value="Ура">
        </form>
        <form method="POST" id="password_input_form">
            <input name="foo" type="password" value="Хармс">
            <input name="button" type="submit" value="Ура">
        </form>
    </body>
</html>