-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathform-3.html
77 lines (73 loc) · 2.8 KB
/
form-3.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iOS7 CSS UI</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/demo.css">
</head>
<body ontouchstart="">
<div class="demo"><!-- for demo purposes only -->
<div class="app">
<div class="top-bar">
<h1 class="top-bar-title">Forms</h1>
<a href="" class="top-bar-link left icon-back">Back</a>
<a href="" class="top-bar-link right">Done</a>
</div>
<nav class="top-bar-sub tabs tabs-three">
<a href="form-1.html" class="tabs-link">Base</a>
<a href="form-2.html" class="tabs-link">Options</a>
<a href="form-3.html" class="tabs-link active">More</a>
</nav>
<nav class="bottom-bar bottom-bar-five">
<a href="index.html" class="bottom-bar-link icon-home">Home</a>
<a href="menu-1.html" class="bottom-bar-link icon-menu">Menu</a>
<a href="form-1.html" class="bottom-bar-link icon-folder active">Forms</a>
<a href="list-1.html" class="bottom-bar-link icon-list">Lists</a>
<a href="alt.html" class="bottom-bar-link icon-alt">Alt</a>
</nav>
<div class="content">
<form>
<h2 class="form-title">Switches</h2>
<fieldset>
<label class="form-row form-switch-row">
<span class="switch">
<input type="checkbox" class="switch-input">
<span class="switch-label"></span>
</span>
<span class="form-switch-label">Contacts</span>
</label>
<label class="form-row form-switch-row">
<span class="switch">
<input type="checkbox" class="switch-input" checked>
<span class="switch-label"></span>
</span>
<span class="form-switch-label">Calendars</span>
</label>
<p class="form-hint">Hint: lorem ipsum dolor sit amet.</p>
</fieldset>
<h2 class="form-title-row">Dropdown</h2>
<fieldset>
<label class="form-row form-select-row">
<select class="form-select-input">
<option selected>Select Country…</option>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
</label>
</fieldset>
<p class="text">“No! Try not. Do, or do not. There is no try.”<br>—Yoda</p>
</form>
</div>
</div>
</div>
<p class="demo-thanks">
Development by <a href="http://roachhd.com/">Roach Haus</a> for their mobile app
<a href="http://lilmads.parse.com/">Lil Mads and the Gold Skull</a>.
</p>
</body>
</html>