Spaces:
Sleeping
Sleeping
File size: 2,068 Bytes
9bebfc5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>الملف الشخصي</title>
<link rel="icon" href="/static/images/logo.png" type="image/png">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
// Function to toggle the menu on small screens
function toggleMenu() {
document.getElementById('nav-Links').classList.toggle('active');
}
</script>
</head>
<body dir="rtl">
<header>
<nav>
<div class="logo">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="Wajeez Logo">
</div>
<ul class="nav-links" id="nav-Links">
<li><a href="{{ url_for('index') }}">الرئيسية</a></li>
<li><a href="{{ url_for('result') }}">صنف ولخص !</a></li>
</ul>
<div class="right-icons">
<div class="auth-buttons">
<a href="/login" class="login">خروج</a>
</div>
</div>
<div class="toggle" onclick="toggleMenu()">☰</div> <!-- Mobile menu toggle -->
</nav>
</header>
<div class="dashboard">
<div class="charts-row">
<div class="chart-container">
<h2 class="title">توزيع القضايا حسب النوع</h2>
<canvas id="caseChart"></canvas>
</div>
<div class="chart-container">
<div id="totalDocuments" class="total-documents"></div>
</div>
</div>
<div class="summary-section">
<h2 class="title">ملخص القضايا</h2>
<div id="caseSummaries"></div>
</div>
</div>
<!-- Link to your external JavaScript file -->
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>
|