diff --git a/.gitignore b/.gitignore index 1931769..5e436cf 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ __pycache__ data/ instance/ venv/ +config.py \ No newline at end of file diff --git a/app.py b/app.py index a0d116c..e02ba05 100644 --- a/app.py +++ b/app.py @@ -8,14 +8,8 @@ import markdown as md from flask import abort app = Flask(__name__) -app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///baza.db' - -app.config['SECRET_KEY'] = 'tajny_klucz' - -# Konfiguracja rejestracji i admina -app.config['ALLOW_REGISTRATION'] = False -app.config['MAIN_ADMIN_USERNAME'] = 'admin' -app.config['MAIN_ADMIN_PASSWORD'] = 'admin' +# Ładujemy konfigurację z pliku config.py +app.config.from_object('config.Config') db = SQLAlchemy(app) login_manager = LoginManager(app) @@ -264,8 +258,31 @@ def create_admin_account(): db.session.add(main_admin) db.session.commit() +@app.after_request +def add_security_headers(response): + if app.config.get("BLOCK_BOTS", False): + cache_control = app.config.get("CACHE_CONTROL_HEADER") + if cache_control: + response.headers["Cache-Control"] = cache_control + # Jeśli Cache-Control jest ustawiony, usuwamy Pragma + response.headers.pop("Pragma", None) + else: + response.headers["Cache-Control"] = "no-store, no-cache, must-revalidate, max-age=0" + response.headers["Pragma"] = app.config.get("PRAGMA_HEADER", "no-cache") + response.headers["X-Robots-Tag"] = app.config.get("ROBOTS_TAG", "noindex, nofollow, nosnippet, noarchive") + return response +@app.route('/robots.txt') +def robots(): + if app.config.get("BLOCK_BOTS", False): + # Instrukcje dla robotów – blokujemy indeksowanie całej witryny + robots_txt = "User-agent: *\nDisallow: /" + else: + # Jeśli blokowanie botów wyłączone, można zwrócić pusty plik lub inne ustawienia + robots_txt = "User-agent: *\nAllow: /" + return robots_txt, 200, {'Content-Type': 'text/plain'} + if __name__ == '__main__': with app.app_context(): db.create_all() diff --git a/config.example.py b/config.example.py new file mode 100644 index 0000000..c7347ab --- /dev/null +++ b/config.example.py @@ -0,0 +1,14 @@ +# config.py + +class Config: + SQLALCHEMY_DATABASE_URI = 'sqlite:///baza.db' + SECRET_KEY = 'tajny_klucz' + + # Konfiguracja rejestracji i admina + ALLOW_REGISTRATION = False + MAIN_ADMIN_USERNAME = 'admin' + MAIN_ADMIN_PASSWORD = 'admin' + # Konfiguracja ochrony przed indeksowaniem + BLOCK_BOTS = True + CACHE_CONTROL_HEADER = "max-age=10" + ROBOTS_TAG = "noindex, nofollow, nosnippet, noarchive" \ No newline at end of file diff --git a/static/css/custom.css b/static/css/custom.css index 9d0f04c..6613524 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -1,31 +1,154 @@ -/* custom.css */ +/* Import czcionki Roboto */ +@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); -/* Dodatkowy odstęp od góry strony */ +/* Ustawienia globalne */ body { + font-family: 'Roboto', sans-serif; + background-color: #121212; + color: #dcdcdc; padding-top: 60px; + margin: 0; } -/* Zwiększona wysokość progress baru */ +/* Nawigacja */ +.navbar { + background-color: #1c1c1c; + border-bottom: 1px solid #444; + transition: background-color 0.3s ease; +} + +.navbar-brand { + color: #f5f5f5; + font-weight: bold; + transition: color 0.3s ease; +} + +.nav-link { + color: #cccccc; + transition: color 0.3s ease; +} + +.nav-link:hover { + color: #ffc107; +} + +/* Karty */ +.card { + background-color: #1c1c1c; + border: none; + border-radius: 0.5rem; + box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6); + margin-bottom: 20px; + transition: transform 0.2s ease, box-shadow 0.2s ease; +} + +.card:hover { + transform: translateY(-5px); + box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.8); +} + +.card-header { + background-color: #272727; + border-bottom: 1px solid #444; + font-weight: bold; +} + +.card-body { + background-color: #1e1e1e; +} + +/* Przyciski */ +.btn { + text-transform: uppercase; + font-weight: bold; + transition: background-color 0.3s ease, transform 0.2s ease; +} + +.btn:hover { + transform: translateY(-2px); +} + +.btn-primary { + background-color: #333333; + border-color: #444444; + color: #ffffff; +} + +.btn-primary:hover { + background-color: #444444; + border-color: #555555; +} + +/* Linki */ +a { + color: #ffc107; + transition: color 0.3s ease; +} + +a:hover { + color: #ffeb3b; +} + +/* Progress Bar */ .progress { + background-color: #2a2a2a; + border-radius: 0.5rem; height: 35px; font-size: 1.2rem; } -/* Ujednolicenie wyglądu kart */ -.card { - margin-bottom: 20px; -} - -/* Drobne poprawki przycisków */ -.btn { - text-transform: uppercase; +.progress-bar { + background: linear-gradient(90deg, #ffc107, #ffeb3b); font-weight: bold; + transition: width 0.3s ease; } -/* Ewentualne zmiany przy linkach */ -a { - color: #ffc107; +/* Alerty (flash messages) */ +.alert { + opacity: 0; + animation: fadeIn 0.5s forwards; + margin-bottom: 1rem; } -a:hover { - color: #ffeb3b; + +@keyframes fadeIn { + to { opacity: 1; } +} + +/* Dodatkowe marginesy */ +.container { + padding: 0 15px; +} + +/* Responsywność */ +@media (max-width: 767px) { + .card { + margin-bottom: 1rem; + } + .card-title { + font-size: 1.25rem; + } + .btn { + font-size: 0.9rem; + } +} + +h1 { + font-size: 2rem; + margin-bottom: 1rem; +} +h2 { + font-size: 1.7rem; + margin-bottom: 0.9rem; +} + +/* Style dla bloku "Wspomóż" */ +.card.wspomoz-card { + border: 1px solid #ffc107 !important; /* Akcentujące obramowanie */ + border-radius: 0.2rem !important; +} + +.card.wspomoz-card .card-body, +.card.wspomoz-card .card-title, +.card.wspomoz-card .card-text { + color: #ffffff !important; /* Bardzo ciemny kolor tekstu */ } diff --git a/templates/admin/add_wplata.html b/templates/admin/add_wplata.html index e294e7e..f2a61ab 100644 --- a/templates/admin/add_wplata.html +++ b/templates/admin/add_wplata.html @@ -1,16 +1,24 @@ {% extends 'base.html' %} {% block title %}Dodaj wpłatę{% endblock %} {% block content %} -

Dodaj wpłatę do zbiórki: {{ zbiorka.nazwa }}

-
-
- - +
+
+
+

Dodaj wpłatę do zbiórki: {{ zbiorka.nazwa }}

-
- - +
+ +
+ + +
+
+ + +
+ +
- - +
+
{% endblock %} diff --git a/templates/admin/add_zbiorka.html b/templates/admin/add_zbiorka.html index fd98692..7ff317c 100644 --- a/templates/admin/add_zbiorka.html +++ b/templates/admin/add_zbiorka.html @@ -1,36 +1,42 @@ {% extends 'base.html' %} {% block title %}Dodaj zbiórkę{% endblock %} {% block content %} -

Dodaj nową zbiórkę

-
- -
- - +
+
+
+

Dodaj nową zbiórkę

-
- - +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
-
- - -
-
- - -
-
- - -
-
- - -
- - - +
+
diff --git a/templates/admin/dashboard.html b/templates/admin/dashboard.html index 255394c..ee5f228 100644 --- a/templates/admin/dashboard.html +++ b/templates/admin/dashboard.html @@ -1,50 +1,54 @@ {% extends 'base.html' %} {% block title %}Panel Admina{% endblock %} {% block content %} -

Panel Admina

-
- Dodaj zbiórkę +
+

Panel Admina

+ +
+ + + + + + + + + + + {% for z in zbiorki %} + + + + + + + {% else %} + + + + {% endfor %} + +
IDNazwaWidocznośćOpcje
{{ z.id }}{{ z.nazwa }} + {% if z.ukryta %} + Ukryta + {% else %} + Widoczna + {% endif %} + + Edytuj + Dodaj wpłatę + Edytuj stan +
+ +
+
+ +
+
Brak zbiórek
+
- - - - - - - - - - - {% for z in zbiorki %} - - - - - - - {% else %} - - - - {% endfor %} - -
IDNazwaWidocznośćOpcje
{{ z.id }}{{ z.nazwa }} - {% if z.ukryta %} - Ukryta - {% else %} - Widoczna - {% endif %} - - Edytuj - Dodaj wpłatę - Edytuj stan -
- -
-
- -
-
Brak zbiórek
{% endblock %} diff --git a/templates/admin/edit_zbiorka.html b/templates/admin/edit_zbiorka.html index 84c20aa..2b58a40 100644 --- a/templates/admin/edit_zbiorka.html +++ b/templates/admin/edit_zbiorka.html @@ -1,36 +1,42 @@ {% extends 'base.html' %} {% block title %}Edytuj zbiórkę{% endblock %} {% block content %} -

Edytuj zbiórkę

-
- -
- - +
+
+
+

Edytuj zbiórkę

-
- - +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
-
- - -
-
- - -
-
- - -
-
- - -
- - - +
+
diff --git a/templates/admin/edytuj_stan.html b/templates/admin/edytuj_stan.html index d0165ef..938b115 100644 --- a/templates/admin/edytuj_stan.html +++ b/templates/admin/edytuj_stan.html @@ -1,13 +1,24 @@ {% extends 'base.html' %} {% block title %}Edytuj stan zbiórki{% endblock %} {% block content %} -

Edytuj stan zbiórki: {{ zbiorka.nazwa }}

-
-
- - -
- - Powrót -
+
+
+
+

Edytuj stan zbiórki: {{ zbiorka.nazwa }}

+
+
+
+
+ +
+ PLN + +
+
+ + Powrót +
+
+
+
{% endblock %} diff --git a/templates/base.html b/templates/base.html index 5d7b702..61d9dbd 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,6 +2,7 @@ + {% block title %}Aplikacja Zbiórek{% endblock %} diff --git a/templates/index.html b/templates/index.html index 79d0b71..2371a45 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,14 +1,25 @@ {% extends 'base.html' %} {% block title %}Lista Zbiórek{% endblock %} {% block content %} -

Lista Zbiórek

-
+

Lista Zbiórek

+
{% for z in zbiorki %} - - {{ z.nazwa }} - +
+
+
+
{{ z.nazwa }}
+ {% set progress = (z.stan / z.cel * 100) if z.cel > 0 else 0 %} +
+
+ {{ progress|round(2) }}% +
+
+ Wejdź do zbiórki +
+
+
{% else %} -

Brak zbiórek

+

Brak zbiórek

{% endfor %}
{% endblock %} diff --git a/templates/login.html b/templates/login.html index 3e9df19..c2007c3 100644 --- a/templates/login.html +++ b/templates/login.html @@ -1,17 +1,19 @@ {% extends 'base.html' %} {% block title %}Logowanie{% endblock %} {% block content %} -

Logowanie

-
-
- - -
-
- - -
- -
-

Nie masz konta? Zarejestruj się

+
+

Logowanie

+
+
+ + +
+
+ + +
+ +
+

Nie masz konta? Zarejestruj się

+
{% endblock %} diff --git a/templates/register.html b/templates/register.html index 474c89f..5f75dd7 100644 --- a/templates/register.html +++ b/templates/register.html @@ -1,16 +1,18 @@ {% extends 'base.html' %} {% block title %}Rejestracja{% endblock %} {% block content %} -

Rejestracja

-
-
- - -
-
- - -
- -
+
+

Rejestracja

+
+
+ + +
+
+ + +
+ +
+
{% endblock %} diff --git a/templates/zbiorka.html b/templates/zbiorka.html index 21f068c..e0e496a 100644 --- a/templates/zbiorka.html +++ b/templates/zbiorka.html @@ -2,31 +2,57 @@ {% block title %}{{ zbiorka.nazwa }}{% endblock %} {% block content %}
-
-
-

{{ zbiorka.nazwa }}

+ +
+
+

{{ zbiorka.nazwa }}

- -
- {{ zbiorka.opis | markdown }} -
-
    -
  • Numer konta: {{ zbiorka.numer_konta }}
  • -
  • Numer telefonu BLIK: {{ zbiorka.numer_telefonu_blik }}
  • - {% if not zbiorka.ukryj_kwote %} -
  • Cel zbiórki: {{ zbiorka.cel }} PLN
  • -
  • Stan zbiórki: {{ zbiorka.stan }} PLN
  • - {% endif %} -
- {% set progress = (zbiorka.stan / zbiorka.cel * 100) if zbiorka.cel > 0 else 0 %} -
Postęp zbiórki
-
-
- {{ progress|round(2) }}% +
+ +
+
Opis zbiórki
+
+ {{ zbiorka.opis | markdown }} +
+ {% set progress = (zbiorka.stan / zbiorka.cel * 100) if zbiorka.cel > 0 else 0 %} +
Postęp zbiórki
+
+
+ {{ progress|round(2) }}% +
+
+ +
+
+
+
Wspomóż
+

+ Numer konta: + {{ zbiorka.numer_konta }} +

+

+ Telefon BLIK: + {{ zbiorka.numer_telefonu_blik }} +

+ {% if not zbiorka.ukryj_kwote %} +

+ Cel zbiórki: + {{ zbiorka.cel }} PLN +

+

+ Stan zbiórki: + {{ zbiorka.stan }} PLN +

+ {% endif %} +
+
+ +
+
{% if current_user.is_authenticated and current_user.is_admin %} @@ -37,22 +63,25 @@
-
-
-

Wpłaty

+ +
+
+

Historia wpłat

{% if zbiorka.wplaty|length > 0 %}
    {% for w in zbiorka.wplaty %}
  • - {{ w.data.strftime('%Y-%m-%d %H:%M:%S') }}: {{ w.kwota }} PLN - {% if w.opis %} – {{ w.opis }}{% endif %} + {{ w.data.strftime('%Y-%m-%d %H:%M:%S') }} – {{ w.kwota }} PLN + {% if w.opis %} + ({{ w.opis }}) + {% endif %}
  • {% endfor %}
{% else %} -

Brak wpłat

+

Brak wpłat

{% endif %}