Creation of membership and donations page.
This commit is contained in:
parent
05ed8d681f
commit
d90ca5bd6a
3 changed files with 38 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
/* Make sure links in the footer are white */
|
/* Make sure links in the footer are white */
|
||||||
footer a {
|
footer a {
|
||||||
color: #fff;
|
color: #fff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Give service boxes a border */
|
/* Give service boxes a border */
|
||||||
|
@ -19,7 +19,7 @@ footer a {
|
||||||
|
|
||||||
/* Limit size of navbar logo */
|
/* Limit size of navbar logo */
|
||||||
.navbar-brand-img {
|
.navbar-brand-img {
|
||||||
max-height: 50px;
|
max-height: 150px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,4 +31,13 @@ footer a {
|
||||||
|
|
||||||
.bg-coffee {
|
.bg-coffee {
|
||||||
background-color: #ffb6c1;
|
background-color: #ffb6c1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background-color: #ffb6c1 !important;
|
||||||
|
border-color: #ffb6c1 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-font {
|
||||||
|
font-family: 'Dancing Script', cursive;
|
||||||
}
|
}
|
|
@ -24,10 +24,15 @@
|
||||||
src="assets/img/logo-inv.svg"
|
src="assets/img/logo-inv.svg"
|
||||||
alt="Private.coffee logo"
|
alt="Private.coffee logo"
|
||||||
/>
|
/>
|
||||||
Private.coffee
|
<span> <h1 style="font-style: title-font;";> Private.coffee</h1> </span>
|
||||||
</a>
|
</a>
|
||||||
<ul class="navbar-nav">
|
<ul class="navbar-nav">
|
||||||
<ul class="nav-item dropdown">
|
<ul class="nav-item dropdown">
|
||||||
|
<a
|
||||||
|
class="nav-link dropdown-toggle"
|
||||||
|
href="#"
|
||||||
|
id="navbardrop"
|
||||||
|
>Donate
|
||||||
<a
|
<a
|
||||||
class="nav-link dropdown-toggle"
|
class="nav-link dropdown-toggle"
|
||||||
href="#"
|
href="#"
|
||||||
|
@ -77,6 +82,9 @@
|
||||||
<li>
|
<li>
|
||||||
<a href="terms.html">Terms of Service</a>
|
<a href="terms.html">Terms of Service</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="membership.html">Membership/Donations</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3 mb-md-0 mb-3">
|
<div class="col-md-3 mb-md-0 mb-3">
|
||||||
|
|
18
templates/membership.html
Normal file
18
templates/membership.html
Normal 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 %}
|
Loading…
Reference in a new issue