-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathfile.html
More file actions
47 lines (39 loc) · 1.29 KB
/
Copy pathfile.html
File metadata and controls
47 lines (39 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="../lib/metro.css" rel="stylesheet">
<link href="../lib/icons.css" rel="stylesheet">
<title>Test File input - Metro UI :: Popular HTML, CSS and JS library</title>
</head>
<body class="cloak">
<nav data-role="appbar">
<span class="app-bar-item">File Input</span>
<div class="app-bar-item-static no-hover">
<input type="checkbox" data-role="theme-switcher"/>
</div>
</nav>
<div class="container">
<h1>File input test page</h1>
<div class="example" lang="ua">
<input type="file" data-role="file" data-prepend="<span class='mif-folder mif-2x'>">
<input type="file" data-role="file" data-label="Select a file:">
<input type="file" data-role="file" disabled>
</div>
<br>
<div class="example" lang="ua">
<input type="file" data-role="file" data-mode="drop">
</div>
<form method="post" action="/">
<div class="example" lang="ua">
<input type="file" data-role="file">
</div>
<button>Add</button>
</form>
</div>
<script src="../lib/metro.js"></script>
<script>
</script>
</body>
</html>