Files
game-library/templates/500.html
Marius Mutu fd87ebca03 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>
2025-09-10 00:40:39 +03:00

23 lines
830 B
HTML

<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eroare server - INDEX-SISTEM-JOCURI</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<div class="welcome-section">
<h1>⚠️ Eroare internă de server</h1>
<p class="subtitle">Eroare 500</p>
<p class="description">
A apărut o eroare în timpul procesării cererii dumneavoastră. Vă rugăm să încercați din nou.
</p>
<div style="margin-top: 30px;">
<a href="{{ url_for('index') }}" class="btn-back">🏠 Înapoi la căutare</a>
</div>
</div>
</div>
</body>
</html>