mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Input: Checkbox</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>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Input: Checkbox</h1>
|
|
</header>
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<main class="content has-header">
|
|
|
|
<ul class="list">
|
|
<li class="list-item">
|
|
Airplane Mode
|
|
<label class="checkbox" id="airplaneMode">
|
|
<input type="checkbox" name="airplaneMode">
|
|
<div class="handle"></div>
|
|
</label>
|
|
</li>
|
|
<li class="list-item">
|
|
Do Not Disturb
|
|
<label class="checkbox" id="doNotDisturb">
|
|
<input type="checkbox" name="doNotDisturb" checked="checked">
|
|
<div class="handle"></div>
|
|
</label>
|
|
</li>
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|