File: required-form-elements.html

package info (click to toggle)
icingaweb2 2.12.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,124 kB
  • sloc: php: 73,980; javascript: 5,009; sql: 333; xml: 75; sh: 72; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (6)
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>