Creation of membership and donations page.

This commit is contained in:
jupfi 2024-04-14 14:03:44 +02:00
parent 05ed8d681f
commit d90ca5bd6a
3 changed files with 38 additions and 3 deletions

View file

@ -4,7 +4,7 @@
/* Make sure links in the footer are white */
footer a {
color: #fff;
color: #fff !important;
}
/* Give service boxes a border */
@ -19,7 +19,7 @@ footer a {
/* Limit size of navbar logo */
.navbar-brand-img {
max-height: 50px;
max-height: 150px;
margin-right: 10px;
}
@ -31,4 +31,13 @@ footer a {
.bg-coffee {
background-color: #ffb6c1;
}
.btn-primary {
background-color: #ffb6c1 !important;
border-color: #ffb6c1 !important;
}
.title-font {
font-family: 'Dancing Script', cursive;
}

View file

@ -24,10 +24,15 @@
src="assets/img/logo-inv.svg"
alt="Private.coffee logo"
/>
Private.coffee
<span> <h1 style="font-style: title-font;";> Private.coffee</h1> </span>
</a>
<ul class="navbar-nav">
<ul class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbardrop"
>Donate
<a
class="nav-link dropdown-toggle"
href="#"
@ -77,6 +82,9 @@
<li>
<a href="terms.html">Terms of Service</a>
</li>
<li>
<a href="membership.html">Membership/Donations</a>
</li>
</ul>
</div>
<div class="col-md-3 mb-md-0 mb-3">

18
templates/membership.html Normal file
View file

@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block content %}
<div class="container">
<h1>Membership/Donations</h1>
<p>private.coffee is a non-profit organization. Server infrastructure is financed via donations and membership fees for the official private.coffee association. </p>
<p>Membership fees are used to cover the costs of server infrastructure, domain names, and other expenses. Donations are used to cover the costs of server infrastructure and other expenses.</p>
<p> You can support the private.coffee project by joining the association or donating directly: </p>
<p> Bank Account: private.coffee- Verein yur Förderung von Privatssphäre und digitaler Souverenität</p>
<p>IBAN: AT35 2081 5000 4554 0812</p>
<p>BIC: STSPAT2GXXX</p>
<p>Please tell us via the note to payee how you want your donation to be listed. </p>
<p>Central Register of Associations (ZVR) Number: 1758485319</p>
<p>
For joining the association get in contact via Email:
<a href="mailto:support@private.coffee">support@private.coffee</a>
</p>
</div>
{% endblock %}