summaryrefslogtreecommitdiffstats
path: root/doc/accessibility/required-form-elements.html
blob: 86fc9374ea2cf9196bfccc932c4702bfec8da7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html class="no-js" lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Accessibility: Required form elements</title>
    <meta name="description" content="Required form elements">
    <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
    <form>
        <label>
            Enter some text:&nbsp;
            <input type="text" name="some_text" value="" aria-required="true" required>
        </label>
        <input type="submit" name="btn_submit" value="Submit">
    </form>
</body>
</html>