mirror of
https://github.com/YunoHost/pepettes.git
synced 2024-09-03 20:06:20 +02:00
25 lines
937 B
HTML
25 lines
937 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>{{ _('Donate to %(name)s', name=name) }}</title>
|
|
|
|
<link rel="icon" href="{{ favicon }}" type="image/x-icon" />
|
|
<link href="./css/bootstrap-5.0.0-beta2.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
|
|
<link href="./css/global.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body class="text-center">
|
|
<main class="form-donate">
|
|
<div>
|
|
<img src="{{ logo }}" class="mb-4" alt="" width="74" height="74"/>
|
|
<h1 class="h3 mb-3 fw-normal">{{ _('Thanks for your donation 🙂') }}</h1>
|
|
|
|
<button onclick="window.location.href = '/';" class="w-100 btn btn-lg btn-primary">{{ _('Go back to the donate form') }}</button>
|
|
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|