"Fossies" - the Fresh Open Source Software Archive

Member "icingaweb2-2.11.4/doc/accessibility/required-form-elements.html" (26 Jan 2023, 604 Bytes) of package /linux/www/icingaweb2-2.11.4.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) HTML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

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