mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
28 lines
718 B
HTML
28 lines
718 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Search</title>
|
|
|
|
<!-- Sets initial viewport load and disables zooming -->
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link href="../dist/css/ionic.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<section class="content overflow-scroll">
|
|
|
|
<header class="bar bar-header item-input-inset">
|
|
<label class="item-input-wrapper">
|
|
<i class="icon ion-search placeholder-icon"></i>
|
|
<input type="search" placeholder="Search">
|
|
</label>
|
|
<button class="button button-clear button-positive">
|
|
Cancel
|
|
</button>
|
|
</header>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|