Files
fnx_web/res/template/donation.html

42 lines
1.1 KiB
HTML
Raw Normal View History

{{define "donation"}}
2017-11-10 12:39:55 +01:00
<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2017-11-10 12:39:55 +01:00
<head>
2020-01-17 20:32:21 +01:00
{{template "meta_tags" "Thank you for supporting pixeldrain!"}}
{{template "user_style" .}}
2017-11-10 12:39:55 +01:00
</head>
<body>
2019-09-17 23:38:40 +02:00
{{template "page_top" .}}
<div class="page_content"><div class="limit_width">
<br/>
{{$success := .URLQuery.Get "success"}}
{{if eq $success "true"}}
{{if .Authenticated}}
2020-06-07 21:12:48 +02:00
Dear {{.User.Username}},
<br/><br/>
Thank you for your donation. I really appreciate it!
<br/><br/>
Sincerely,<br/>
Fornax
{{else}}
Thank you for your donation! You are amazing.
2017-11-10 12:39:55 +01:00
<br/><br/>
Sincerely,<br/>
Fornax
{{end}}
{{else}}
It seems you have canceled your donation. I don't blame you, money is expensive :)
<br/><br/>
If this was not your intention, you're welcome to try again by clicking this button:
<a class="button" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WU49A5NHPAZ9G&source=url">Donate with PayPal</a>
<br/><br/>
Sincerely,<br/>
Fornax
{{end}}
2019-09-17 23:38:40 +02:00
</div></div>
2020-01-31 19:16:20 +01:00
{{template "page_bottom" .}}
{{template "analytics"}}
2017-11-10 12:39:55 +01:00
</body>
</html>
{{end}}