-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
108 lines (92 loc) · 5.21 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
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<!--
Copyright (C) 25 Dec 2011 Melvin Carvalho, Nathan Rixham
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<head>
<meta charset="utf-8">
<title>Opentabs (Alpha)</title>
<meta name="description" content="">
<meta name="author" content="">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="stylesheets/base.css">
<link rel="stylesheet" href="stylesheets/skeleton.css">
<link rel="stylesheet" href="stylesheets/layout.css">
<link rel="stylesheet" href="stylesheets/style.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css">
</head>
<body>
<script src="https://browserid.org/include.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<div class="container">
<div class="sixteen columns">
<h1 class="remove-bottom" style="margin-top: 40px">Opentabs <span class="alpha">Alpha</span></h1>
<h5 id="welcome">Loading …</h5>
</div>
<hr />
<div class="one-third column">
<form>
<p>Send IOU to:
<select name="payee" id="payee">
<option value="[email protected]">Test Dummy</option>
</select> <a id="addRecipient-button" href="javascript:document.IOU.addR()">add</a>
<div id="addRecipient" style="display:none;">
<span class="infieldlabel"><label for="name">Name</label><input type="text" size="10" id="name" name="name" value="" /></span>
<span class="infieldlabel"><label for="uri">Email address</label><input size="10" type="text" id="uri" name="uri" value="" /></span>
<input type="button" value="Add" id="add" />
</div>
</p>
<p>Amount:
<select name="amount" id="quantity">
<option value="1">1</option>
<option value="5" selected>5</option>
<option value="25">25</option>
<option value="100">100</option>
<option value="250">250</option>
<option value="1000">1000</option>
</select>
<select name="currency" id="currency">
<option value="http://dbpedia.org/resource/Euro">€</option>
</select>
<input type="button" value="Send" id="save" />
</p>
</form>
<div id="opentabs"></div>
<div class="plus" id="status"></div>
<br/>
<div class="alpha">Note: Data is test only may be reset 30 Mar 2012</div>
<span class="heading hide"><a href="javascript:document.IOU.loginPopup()">Login</a></span>
<button class="hide" id="clearall">Clear All IOUs</button>
<form id="loginPopup" class="hide" action="https://data.fm/rp_auth">
BrowserID <a id="loginBrowserID" href="#"><img width="158" height="44" style="float: left" src="http://melvincarvalho.github.com/appbuilder/images/browserid_blue.png" /></a><br/>
<br/><br/><a id="loginFacebook" href="#"><img src="http://melvincarvalho.github.com/appbuilder/images/facebook.gif" /></a><br/>
<a id="loginGmail" href="#"><img src="http://melvincarvalho.github.com/appbuilder/images/gmail.png" /></a><br/>
<a id="loginYahoo" href="#"><img src="http://melvincarvalho.github.com/appbuilder/images/yahoo.png" /></a><br/>
WebID <a id="loginWebID" href="#"><img height="60" width="105" style="float: left" src="http://melvincarvalho.github.com/appbuilder/images/webid.png" /></a>
</form>
</div>
</div>
<script src="javascripts/sha1.js"></script>
<script src="javascripts/jsonld.js"></script>
<script src="javascripts/jsonld-turtle.js"></script>
<script src="javascripts/opentabs.js"></script>
<script src="javascripts/jquery-infieldlabel.min.js"></script>
</body>
</html>