forked from olton/metroui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.html
More file actions
59 lines (50 loc) · 1.78 KB
/
Copy pathinput.html
File metadata and controls
59 lines (50 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
<!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">
<title>Test Input - Metro 4 :: Popular HTML, CSS and JS library</title>
<style>
.example {
width: 300px;
margin: 10px;
}
</style>
</head>
<body class="m4-cloak">
<nav data-role="appbar">
<span class="app-bar-item">Inputs</span>
<div class="app-bar-item no-hover">
<input type="checkbox" data-role="theme-switcher" data-state="light"/>
</div>
</nav>
<div class="container">
<h1>Input test page</h1>
<div class="row">
<div class="example">
<input type="text" placeholder="Enter your name" class="metro-input">
</div>
<div class="example">
<input type="text" placeholder="Enter your name" data-role="input">
</div>
<div class="example">
<input type="password" placeholder="Enter password" data-role="input">
</div>
<div class="example">
<input type="text" placeholder="Enter search" data-role="input" data-search-button="true">
</div>
<div class="example">
<input type="text" placeholder="Enter search" data-role="input" data-prepend="Prepend:">
</div>
<div class="example">
<input type="text" placeholder="Enter search" data-role="input" data-append="Append">
</div>
<div class="example">
<input type="text" placeholder="Enter search" data-role="input" data-autocomplete-url="https://metroui.org.ua/data/autocomplete.txt">
</div>
</div>
</div>
<script src="../lib/metro.js"></script>
</body>
</html>