-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog_two_buttons.html
More file actions
40 lines (39 loc) · 1.19 KB
/
dialog_two_buttons.html
File metadata and controls
40 lines (39 loc) · 1.19 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="dist/ios7css.css" type="text/css">
<script src="js/track.js"></script>
</head>
<body>
<h3>Dialog with two buttons:</h3>
<ul class="list">
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
<li>List 4</li>
<li>List 5</li>
<li>List 6</li>
<li>List 7</li>
<li>List 8</li>
<li>List 9</li>
<li>List 10</li>
<li>List 11</li>
<li>List 12</li>
<li>List 13</li>
<li>List 14</li>
<li>List 15</li>
<li>List 16</li>
<li>List 17</li>
<li>List 18</li>
<li>List 19</li>
</ul>
<div class="dialog">
<div class="title">Terms and Conditions</div>
<div class="content">I agree to the iOS, iCloud and Game Center Terms and Conditions and the Apple Privacy Policy. I agree to the iOS, iCloud and Game Center Terms and Conditions and the Apple Privacy Policy. I agree to the iOS, iCloud and Game Center Terms and Conditions and the Apple Privacy Policy.</div>
<div class="button-group">
<button class="half">Cancel</button><button class="half primary">Agree</button>
</div>
</div>
</body>
</html>