tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

prompts.html (857B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8" />
      5  </head>
      6  <body>
      7    <select id="selectexample">
      8      <option>1</option>
      9      <option>2</option>
     10    </select>
     11 
     12    <input type="date" id="dateexample" />
     13 
     14    <input type="month" id="monthexample" />
     15 
     16    <input type="week" id="weekexample" />
     17 
     18    <input type="time" id="timeexample" />
     19 
     20    <input type="datetime-local" id="datetimelocalexample" />
     21 
     22    <input type="color" id="colorexample" value="#ffffff" />
     23 
     24    <input type="file" id="fileexample" accept="image/*,.pdf" capture="user" />
     25 
     26    <input
     27      type="file"
     28      multiple
     29      id="filemultipleexample"
     30      accept="image/*,.pdf"
     31    />
     32 
     33    <input type="file" id="direxample" webkitdirectory />
     34 
     35    <datalist id="colorlist">
     36      <option>#000000</option>
     37      <option>#808080</option>
     38    </datalist>
     39  </body>
     40 </html>