Initial commit: Organize project structure

- Create organized directory structure (src/, docs/, data/, static/, templates/)
- Add comprehensive .gitignore for Python projects
- Move Python source files to src/
- Move documentation files to docs/ with project/ and user/ subdirectories
- Move database files to data/
- Update all database path references in Python code
- Maintain Flask static/ and templates/ directories

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-10 00:40:39 +03:00
commit fd87ebca03
23 changed files with 7317 additions and 0 deletions

23
templates/404.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pagină negăsită - INDEX-SISTEM-JOCURI</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<div class="welcome-section">
<h1>🔍 Pagina nu a fost găsită</h1>
<p class="subtitle">Eroare 404</p>
<p class="description">
Pagina pe care o căutați nu există sau a fost mutată.
</p>
<div style="margin-top: 30px;">
<a href="{{ url_for('index') }}" class="btn-back">🏠 Înapoi la căutare</a>
</div>
</div>
</div>
</body>
</html>