-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtips.html
131 lines (129 loc) · 6.66 KB
/
tips.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<![endif]-->
<title>Rebaslight Tip Jar</title>
<link rel="canonical" href="https://www.rebaslight.com/tips.html"/>
<meta name="application-name" content="Rebaslight">
<meta name="application-url" content="http://www.rebaslight.com/">
<link rel="icon" type="image/png" href="/favicon-196x196.png" sizes="196x196">
<link rel="icon" type="image/png" href="/favicon-128x128.png" sizes="128x128">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<div>
<noscript>
<div class="alert alert-danger">For this site to work you must <b>enable JavaScript</b>.<br>Here are the <a href="http://www.enable-javascript.com/" target="_blank">instructions how to enable JavaScript in your web browser</a></div>
</noscript>
<!--[if lt IE 9]>
<div class="alert alert-danger"><strong>Heads up!</strong>The web browser you are using won't work well with this site.<br>We suggest the excellent (and free) <a href="https://www.google.com/intl/en/chrome/browser/" target="_blank">Google Chrome</a></div>
<![endif]-->
</div>
<div style="height: 100%;">
<div class="rl-sticky-footer-wrap">
<div style="margin:0 auto 3rem auto;padding-top:4rem;width:38.3rem;">
<div id="rl-error" style="display:none" class="alert alert-danger" role="alert">
<div>
<b>Transaction Failed:</b>
<span>Error</span>
</div>
Please try again.
</div>
<div class="rl-card">
<div class="rl-card-header noselect">
<a href="http://www.rebaslight.com/" target="_blank">
<img src="/img/logo-transparent-50.png" />
</a>
Rebaslight Tip Jar
</div>
<div id="rl-buy-now" class="rl-card-body">
<p>
If Rebaslight has been extra helpful to your project, tips are appreciated but not expected.
</p>
<p>
<a class="btn btn-success btn-lg" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=C95SXCL5UXXPY" title="PayPal">
Leave a Tip
</a>
</p>
<p>
Rebaslight is a small project I started in high school and continue running many years later.
I am by no means getting rich off this work, but it is fun project, and I enjoy helping small-budget film makers.
</p>
<p>
Tips help continue the ongoing support and development for Rebaslight. It also makes my day when I hear success stories of how Rebaslight helped a film project.
</p>
<p>
Thank you for using Rebaslight!
</p>
<div style="margin-left:1em">
<i>- Matthew</i>
<div style="margin-top:.5em;margin-left:.5em">
</div>
</div>
</div>
<div id="rl-thank-you" style="display:none" class="rl-card-body">
<h2 class="text-success" style="margin-top:0">Thank you for the tip!</h2>
<p>
It's much appreciated.
</p>
<p>
Happy editing!
</p>
<div style="margin-left:1em">
<i>- Matthew</i>
<div style="margin-top:.5em;margin-left:.5em">
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="container-fluid text-center">
<p>
<a href="https://github.com/rebaslight/rebaslight/blob/master/LICENSE.md">License</a>
,
<a href="https://smallhelm.com/privacy">Privacy</a>
,
<a href="https://smallhelm.com" class="no-link-styles">
© 2023 Very Small Helm LLC
</a>
<br>
<a href="http://www.rebaslight.com">
www.rebaslight.com
</a>
</p>
</div>
</footer>
</div>
<script>
(function(){
var qs = document.location.href.split("?")[1];
if(/^error=/.test(qs)){
var error = decodeURIComponent(qs.substring(6));
var div = document.getElementById("rl-error");
div.children[0].children[1].innerHTML = error
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/\"/g, '"')
.replace(/\'/g, ''');
div.style.display = "block";
}else if(/^thank-you/.test(qs)){
document.getElementById("rl-thank-you").style.display = "block";
document.getElementById("rl-buy-now").style.display = "none";
}
}());
</script>
</body>
</html>