2019-02-18 21:11:42 +01:00
|
|
|
{{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!"}}
|
2019-02-18 21:11:42 +01:00
|
|
|
{{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">
|
2019-02-18 21:11:42 +01:00
|
|
|
<br/>
|
|
|
|
{{$success := .URLQuery.Get "success"}}
|
|
|
|
{{if eq $success "true"}}
|
|
|
|
{{if .Authenticated}}
|
2020-06-07 21:12:48 +02:00
|
|
|
Dear {{.User.Username}},
|
2019-02-18 21:11:42 +01:00
|
|
|
<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/>
|
2019-02-18 21:11:42 +01:00
|
|
|
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" .}}
|
2019-02-18 21:11:42 +01:00
|
|
|
{{template "analytics"}}
|
2017-11-10 12:39:55 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
2019-02-18 21:11:42 +01:00
|
|
|
{{end}}
|