-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
114 lines (105 loc) · 4.15 KB
/
index.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html>
<head>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/rung.css"/>
<script type="text/javascript" src="js/jquery-1.9.1.min.js"/></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<title>Rung Action Creator</title>
</head>
<body>
<div class="container">
<div class="mainContents">
<div class="step landing">
<div class="count"></div>
<div class="actionName">What do you want to do today?</div>
<div class="actionContents">
<button type="button" id="scan" class="btn">Scan QR Code from my computer</button>
<button type="button" id="createNew" class="btn">Create new Rung Action</button>
</div>
<div class="overlay"></div>
</div>
<div class="step action">
<div class="count"></div>
<div class="actionName">What do you want your Rung to do?</div>
<div class="actionContents">
<div class="rungActions">
</div>
</div>
<div class="overlay"></div>
</div>
<div class="step option">
<div class="count"></div>
<div class="actionName"></div>
<div class="actionContents">
<form>
<label for="optionInput"></label><input id="optionInput" type="text">
<input type="submit" class="btn btn-success next" value="Next">
</form>
</div>
<button type="button" class="btn back">Back</button>
<div class="overlay"></div>
</div>
<div class="step platform">
<div class="count"></div>
<div class="actionName">Install App</div>
<div class="actionContents">
Select your Mobile Phone Platform
<div class="platforms">
<a class="paddedIcon" data-platform="android"><img src="img/android.png">Android</a>
<a class="paddedIcon" data-platform="windowsMobile"><img src="img/windowsmobile.png">Windows Mobile</a>
<a class="paddedIcon" data-platform="blackBerry"><img src="img/blackberry.png">Blackberry</a>
</div>
<button type="button" id="continue" class="btn btn-success">I have already installed the app, continue and don't ask me again</button>
</div>
<button type="button" class="btn back">Back</button>
<div class="overlay"></div>
</div>
<div class="step platformInstall">
<div class="count"></div>
<div class="actionName">Install App</div>
<div class="actionContents">
<div class="platformInfo" id="androidInfo">
<button type="button" class="btn obviousButton" href="" target="_blank">Install Now (will open a new window)</button>
</div>
<div class="platformInfo" id="windowsMobileInfo">
Search for Rung in the Windows Mobile Store.
</div>
<div class="platformInfo" id="blackBerryInfo">
Search for Rung in the BlackBerry app center.
</div>
<button type="button" id="continue" class="btn btn-success">I have installed the app, continue</button>
</div>
<button type="button" class="btn back">Back</button>
<div class="overlay"></div>
</div>
<div class="step showQr">
<div class="count"></div>
<div class="actionName">Open the Rung App</div>
<div class="actionContents">Select "scan a QR code" then scan this QR code:
<div id="qrCode"></div>
</div>
<button type="button" class="btn btn-success finish">Finish & Reset!</button>
<button type="button" class="btn back">Back</button>
<div class="overlay"></div>
</div>
</div>
<footer><a href="http://rung.io">Rung</a> NDEF Generator (c) McLear 2013</footer>
</div>
<script type="text/javascript" src="js/jquery.qrcode.min.js"/></script>
<script type="text/javascript" src="js/rung.js"/></script>
<script>
// Nasty GA neccesary evil
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34066705-3', 'rung.io');
ga('send', 'pageview');
</script>
</body>
</html>