summaryrefslogtreecommitdiff
path: root/tests/manual/files.html
blob: b5dd39fa130c06662a0a2b806dcfe73ec1dc1b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Selecting files</title>
    </head>
    <body>
      <form>
        <p>Single file:</p> <input type="file"/>
        <p>Multiple files:</p> <input type="file" multiple/>
        <p>With accept-attribute:</p> <input type="file" accept="text/plain"/>
      </form>
    </body>
</html>