51 lines
1.9 KiB
HTML
51 lines
1.9 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>iUI Prefs Demo</title>
|
|
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
|
|
<link rel="apple-touch-icon" href="../iui/iui-logo-touch-icon.png" />
|
|
<meta name="apple-touch-fullscreen" content="YES" />
|
|
<style type="text/css" media="screen">@import "../iui/iui.css";</style>
|
|
<script type="application/x-javascript" src="../iui/iui.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="toolbar">
|
|
<h1 id="pageTitle"></h1>
|
|
<a id="backButton" class="button" href="#"></a>
|
|
</div>
|
|
|
|
<form id="settings" title="Settings" class="panel" selected="true">
|
|
<h2>Playback</h2>
|
|
<fieldset>
|
|
<div class="row">
|
|
<label>Repeat</label>
|
|
<div class="toggle" onclick=""><span class="thumb"></span><span class="toggleOn">ON</span><span class="toggleOff">OFF</span></div>
|
|
</div>
|
|
<div class="row">
|
|
<label>Shuffle</label>
|
|
<div class="toggle" onclick="" toggled="true"><span class="thumb"></span><span class="toggleOn">ON</span><span class="toggleOff">OFF</span></div>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<h2>User</h2>
|
|
<fieldset>
|
|
<div class="row">
|
|
<label>Name</label>
|
|
<input type="text" name="userName" value="johnappleseed"/>
|
|
</div>
|
|
<div class="row">
|
|
<label>Password</label>
|
|
<input type="password" name="password" value="delicious"/>
|
|
</div>
|
|
<div class="row">
|
|
<label>Confirm</label>
|
|
<input type="password" name="password" value="delicious"/>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</body>
|
|
</html>
|