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 %} -