-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
103 lines (77 loc) · 2.88 KB
/
popup.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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>PayPal Gebührenrechner</title>
<link rel="stylesheet" type="text/css" href="w2ui-1.5.min.css">
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 400px;
}
</style>
<script src="jquery-3.3.1.slim.min.js"></script>
<script src="w2ui-1.5.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div id="form" style="width: 300px; height: 400px" align="right">
<div class="w2ui-page page-0" style="width: 300px; float: left; margin-right: 3px">
<div style="padding: 3px; font-weight: bold; color: #777;" align="left">Gebührenrechner</div>
<div class="w2ui-group" style="height: 115px; width: 280px">
<div class="w2ui-field w2ui-span4">
<label>Geldeingang</label>
<div>
<input name="idBase" type="text" maxlength="50" size="20"/>
</div>
</div>
<div class="w2ui-field w2ui-span4">
<label>Gebühren</label>
<div>
<input name="idFee" type="text" maxlength="50" size="20"/>
</div>
</div>
<div class="w2ui-field w2ui-span4">
<label>Endbetrag</label>
<div>
<input name="idTotal" type="text" maxlength="50" size="20"/>
</div>
</div>
</div>
<div style="padding: 3px; font-weight: bold; color: #777;" align="left">Rückwärtsrechner</div>
<div class="w2ui-group" style="height: 115px; width: 280px">
<div class="w2ui-field w2ui-span4">
<label>Wunschbetrag</label>
<div>
<input name="idBaser" type="text" maxlength="50" size="20"/>
</div>
</div>
<div class="w2ui-field w2ui-span4">
<label>Gebühren</label>
<div>
<input name="idFeer" type="text" maxlength="50" size="20"/>
</div>
</div>
<div class="w2ui-field w2ui-span4">
<label>Zahlbetrag</label>
<div>
<input name="idTotalr" type="text" maxlength="50" size="20"/>
</div>
</div>
</div>
<div align="center"><a href="https://www.paypal.me/koehntopp" id="link" target="_blank"><img src="images/donate.png"></a></div>
<div align="center">Buy me a coffee</div>
</div>
</body>
</html>