251 lines
8.2 KiB
HTML
251 lines
8.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Sistem Deteksi dan Diagnosis PMK - {% block title %}{% endblock %}</title>
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Font Awesome Icons -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
|
|
<style>
|
|
:root {
|
|
--primary-color: #28a745;
|
|
--secondary-color: #6c757d;
|
|
--success-color: #28a745;
|
|
--warning-color: #ffc107;
|
|
--danger-color: #dc3545;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f8f9fa;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.1);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: bold;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.1);
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
border: none;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 4px 8px rgba(0,0,0,.15);
|
|
}
|
|
|
|
.card-header {
|
|
border-radius: 10px 10px 0 0 !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.btn {
|
|
border-radius: 5px;
|
|
padding: 10px 20px;
|
|
font-weight: 500;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.2);
|
|
}
|
|
|
|
.btn-success {
|
|
background-color: var(--primary-color);
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.btn-success:hover {
|
|
background-color: #218838;
|
|
border-color: #1e7e34;
|
|
}
|
|
|
|
.step-circle {
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin: 0 auto 15px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.2);
|
|
}
|
|
|
|
.progress {
|
|
height: 25px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.progress-bar {
|
|
line-height: 25px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #343a40;
|
|
color: white;
|
|
padding: 20px 0;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.alert {
|
|
border-radius: 10px;
|
|
border: none;
|
|
}
|
|
|
|
.table {
|
|
background-color: white;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.table th {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.badge {
|
|
padding: 8px 12px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.navbar-brand {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.btn {
|
|
padding: 8px 16px;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<!-- Navbar -->
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-success">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="{{ url_for('index') }}">
|
|
<i class="fas fa-cow me-2"></i>Sistem Deteksi & Diagnosis PMK
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.endpoint == 'index' %}active{% endif %}" href="{{ url_for('index') }}">
|
|
<i class="fas fa-home me-1"></i>Home
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.endpoint == 'riwayat_deteksi' %}active{% endif %}" href="{{ url_for('riwayat_deteksi') }}">
|
|
<i class="fas fa-history me-1"></i>Riwayat Deteksi
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Flash Messages -->
|
|
<div class="container mt-3">
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category if category != 'error' else 'danger' }} alert-dismissible fade show" role="alert">
|
|
<i class="fas fa-{{ 'check-circle' if category == 'success' else 'exclamation-circle' }} me-2"></i>
|
|
{{ message }}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
</div>
|
|
|
|
<!-- Main Content -->
|
|
<main class="container my-4">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h5><i class="fas fa-cow me-2"></i>Sistem Deteksi PMK</h5>
|
|
<p>Sistem terintegrasi untuk deteksi Penyakit Mulut dan Kuku (PMK) pada sapi menggunakan image processing dan sistem pakar forward chaining.</p>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<h5>Menu</h5>
|
|
<ul class="list-unstyled">
|
|
<li><a href="{{ url_for('index') }}" class="text-white">Home</a></li>
|
|
<li><a href="{{ url_for('riwayat_deteksi') }}" class="text-white">Riwayat Deteksi</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<h5>Kontak</h5>
|
|
<ul class="list-unstyled">
|
|
<li><i class="fas fa-envelope me-2"></i>support@deteksipmk.id</li>
|
|
<li><i class="fas fa-phone me-2"></i>+62 123 4567 890</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<hr class="bg-white">
|
|
<div class="text-center">
|
|
<p class="mb-0">© 2024 Sistem Deteksi PMK. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- jQuery -->
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
document.querySelectorAll('.progress-bar[data-width]').forEach(function(el) {
|
|
var w = parseFloat(el.getAttribute('data-width'));
|
|
if (!isNaN(w)) {
|
|
el.style.width = w + '%';
|
|
// if element has only whitespace, set text to formatted percent
|
|
if (!el.textContent.trim()) el.textContent = w.toFixed(1) + '%';
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html> |