mirror of
https://github.com/YunoHost/pepettes.git
synced 2024-09-03 20:06:20 +02:00
42 lines
1.9 KiB
HTML
42 lines
1.9 KiB
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" />
|
|
<script src="https://js.stripe.com/v3/"></script>
|
|
<script src="./index.js" defer></script>
|
|
</head>
|
|
|
|
<body class="text-center">
|
|
<main class="form-donate">
|
|
<div>
|
|
<img src="{{ logo }}" class="mb-4" alt="Project Logo" max-width="7em"/>
|
|
<h1 class="h3 mb-3 fw-normal">{{ _('I want to give to %(name)s', name=name) }}</h1>
|
|
<div class="input-group mb-3">
|
|
<input type="hidden" id="csrf" value="{{ csrf }}" />
|
|
<input type="hidden" id="public_key" value="{{ stripe_publishable_key }}" />
|
|
<input type="number" min="0" max="9999" class="form-control" id="quantity" value="10" aria-label="Amount">
|
|
<select class="form-control" id="currency" style="width:40px">
|
|
{% for iso, symbol in currencies %}
|
|
<option value="{{ iso }}">{{ symbol }}
|
|
{% endfor %}
|
|
</select>
|
|
<select class="form-control" id="frequency">
|
|
<option value="recuring"> {{ _('/ month') }}
|
|
<option value="one_time"> {{ _('one time') }}
|
|
</select>
|
|
</div>
|
|
|
|
<button id="submit" class="w-100 btn btn-lg btn-primary">{{ _('Donate') }}</button>
|
|
<p><a href="{{ contact_url }}">{{ _('If you want to cancel a monthly donation, please contact us') }}</a></p>
|
|
<div id="error-message"></div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|