-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathform-1.html
74 lines (70 loc) · 3.15 KB
/
form-1.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
<!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 active">Base</a>
<a href="form-2.html" class="tabs-link">Options</a>
<a href="form-3.html" class="tabs-link">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-row">Text fields</h2>
<fieldset>
<label class="form-row form-text-row">
<!-- Note: there must be no whitespace between the <span> and the <input>. -->
<span class="form-text-label">Subject:</span><input type="text" class="form-text-input" value="Hi">
<!-- If you want the label to be black, use: <span class="form-text-label form-text-label-black"> -->
<!-- If you want the label to be fixed-width, use: <span class="form-text-label width-20 (or 30, 40, 50)"> -->
</label>
<label class="form-row form-text-row">
<textarea class="form-text-textarea" placeholder="Message…"></textarea>
</label>
</fieldset>
<h2 class="form-title-row">Validation</h2>
<fieldset>
<label class="form-row form-text-row valid">
<span class="form-text-label width-20">Email:</span><input type="email" class="form-text-input" value="valid@email">
<span class="form-hint">Good job!</span>
</label>
<label class="form-row form-text-row invalid">
<span class="form-text-label width-20">URL:</span><input type="url" class="form-text-input" value="invalid url">
<span class="form-hint">Doesn't look like a URL.</span>
</label>
</fieldset>
<div class="form-submit">
<button type="submit" class="button button-green icon-check">Send</button>
<button type="reset" class="button button-red icon-delete">Cancel</button>
</div>
</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>