Initial commit — WebGIS UAS GeoMiskin
Sistem WebGIS analisis sebaran penduduk miskin dan jangkauan rumah ibadah. Fitur: peta interaktif Leaflet.js, CRUD rumah ibadah & penduduk miskin, auto-kategorisasi haversine, heatmap, export PDF/CSV, dashboard analitik, manajemen pengguna (superadmin/admin), login sistem. Teknologi: PHP, MySQL, Leaflet.js, OpenStreetMap, Nominatim Geocoding, mPDF. Catatan: jalankan `composer install` di folder uas/ untuk install dependencies. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,212 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="id">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Portal WebGIS | Universitas Tanjungpura</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" rel="stylesheet">
|
||||
<style>
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
body {
|
||||
min-height: 100vh;
|
||||
background: #0f172a;
|
||||
font-family: 'Inter', 'Segoe UI', sans-serif;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 24px;
|
||||
color: #e2e8f0;
|
||||
}
|
||||
|
||||
/* subtle grid bg */
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
|
||||
background-size: 40px 40px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.header {
|
||||
text-align: center;
|
||||
margin-bottom: 52px;
|
||||
position: relative;
|
||||
}
|
||||
.header .badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
background: rgba(59,130,246,.15);
|
||||
border: 1px solid rgba(59,130,246,.3);
|
||||
color: #93c5fd;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
letter-spacing: .8px;
|
||||
text-transform: uppercase;
|
||||
padding: 5px 14px;
|
||||
border-radius: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.header h1 {
|
||||
font-size: 38px;
|
||||
font-weight: 800;
|
||||
color: #f1f5f9;
|
||||
line-height: 1.15;
|
||||
margin-bottom: 14px;
|
||||
letter-spacing: -.5px;
|
||||
}
|
||||
.header h1 span {
|
||||
background: linear-gradient(135deg, #3b82f6, #6366f1);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.header p {
|
||||
font-size: 15px;
|
||||
color: #64748b;
|
||||
max-width: 440px;
|
||||
margin: 0 auto;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Cards */
|
||||
.cards {
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
.card {
|
||||
width: 300px;
|
||||
background: #1e293b;
|
||||
border: 1px solid rgba(255,255,255,.07);
|
||||
border-radius: 20px;
|
||||
padding: 36px 28px 32px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.card:hover {
|
||||
transform: translateY(-8px);
|
||||
border-color: rgba(255,255,255,.15);
|
||||
box-shadow: 0 24px 60px rgba(0,0,0,.5);
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
.card-icon {
|
||||
width: 76px;
|
||||
height: 76px;
|
||||
border-radius: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 30px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.card h2 {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: #f1f5f9;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.card p {
|
||||
font-size: 13px;
|
||||
color: #64748b;
|
||||
line-height: 1.65;
|
||||
flex: 1;
|
||||
}
|
||||
.card-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
margin-top: 22px;
|
||||
padding: 9px 20px;
|
||||
border-radius: 10px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
letter-spacing: .5px;
|
||||
text-transform: uppercase;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: opacity .18s;
|
||||
}
|
||||
.card-btn:hover { opacity: .85; }
|
||||
|
||||
/* Tugas card */
|
||||
.card-tugas .card-icon { background: rgba(59,130,246,.15); color: #3b82f6; }
|
||||
.card-tugas:hover { box-shadow: 0 24px 60px rgba(59,130,246,.12), 0 0 0 1px rgba(59,130,246,.2); border-color: rgba(59,130,246,.3); }
|
||||
.card-tugas .card-btn { background: #3b82f6; color: white; }
|
||||
|
||||
/* UAS card */
|
||||
.card-uas .card-icon { background: rgba(16,185,129,.15); color: #10b981; }
|
||||
.card-uas:hover { box-shadow: 0 24px 60px rgba(16,185,129,.12), 0 0 0 1px rgba(16,185,129,.2); border-color: rgba(16,185,129,.3); }
|
||||
.card-uas .card-btn { background: #10b981; color: white; }
|
||||
|
||||
/* footer */
|
||||
.footer {
|
||||
margin-top: 52px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
.footer a {
|
||||
color: #475569;
|
||||
font-size: 13px;
|
||||
text-decoration: none;
|
||||
transition: color .18s;
|
||||
}
|
||||
.footer a:hover { color: #94a3b8; }
|
||||
.footer .meta {
|
||||
font-size: 11px;
|
||||
color: #334155;
|
||||
margin-top: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="header">
|
||||
<div class="badge"><i class="fas fa-map-marked-alt"></i> WebGIS SIG B</div>
|
||||
<h1>Portal <span>WebGIS</span> Terpadu</h1>
|
||||
<p>Pilih sistem informasi spasial yang ingin Anda akses. Jelajahi data geospasial Kota Pontianak dengan mudah dan interaktif.</p>
|
||||
</div>
|
||||
|
||||
<div class="cards">
|
||||
|
||||
<a href="tugas.php" class="card card-tugas">
|
||||
<div class="card-icon">
|
||||
<i class="fas fa-layer-group"></i>
|
||||
</div>
|
||||
<h2>Tugas</h2>
|
||||
<p>Pemetaan SPBU, Masjid, KK Miskin, Ruas Jalan, Persil Tanah, dan Batas Wilayah Administrasi Kota Pontianak.</p>
|
||||
<span class="card-btn"><i class="fas fa-globe"></i> Buka Aplikasi</span>
|
||||
</a>
|
||||
|
||||
<a href="uas/" class="card card-uas">
|
||||
<div class="card-icon">
|
||||
<i class="fas fa-house-circle-check"></i>
|
||||
</div>
|
||||
<h2>UAS</h2>
|
||||
<p>Sistem analisis spasial sebaran penduduk miskin dan jangkauan rumah ibadah dengan fitur manajemen data lengkap.</p>
|
||||
<span class="card-btn"><i class="fas fa-globe"></i> Buka Aplikasi</span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<a href="uas/login.php"><i class="fas fa-lock me-1"></i>Masuk sebagai Administrator</a>
|
||||
<div class="meta">Athallah Ghathfan Aqila · D1041231060 · Dr. Ir. Yus Sholva · Universitas Tanjungpura</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user