Created At: 2026-06-14T13:52:54Z
Completed At: 2026-06-14T13:52:54Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 4581
Total Bytes: 193572
Showing lines 830 to 880
The following code has been modified to include a line number before every line, in the format: <line_number>: <original_line>. Please note that any changes targeting the original code should remove the line number, colon, and leading space.
830:         echo json_encode(['error' => 'Gagal memproses data di server.']);
831:         exit;
832:     }
833: }
834: ?>
835: <!DOCTYPE html>
836: <html lang="id">
837: 
838: <head>
839:   <meta charset="utf-8" />
840:   <meta content="width=device-width, initial-scale=1.0" name="viewport" />
841:   <title>Climate Information System Indonesia</title>
842:   <link href="https://fonts.googleapis.com" rel="preconnect" />
843:   <link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
844:   <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap"
845:     rel="stylesheet" />
846:   <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
847:   <script src="https://code.highcharts.com/highcharts.js"></script>
848:   <script src="https://code.highcharts.com/highcharts-more.js"></script>
849:   <style>
850:     /* ====================================================== */
851:     /* ======================= GLOBAL ======================== */
852:     /* ====================================================== */
853: 
854:     * {
855:       margin: 0;
856:       padding: 0;
857:       box-sizing: border-box;
858:     }
859: 
860:     body {
861:       font-family: 'Poppins', sans-serif;
862:       background: #f4f7fb;
863:       color: #1e293b;
864:     }
865: 
866:     html {
867:       scroll-behavior: smooth;
868:     }
869: 
870:     .container {
871:       width: 90%;
872:       max-width: 1400px;
873:       margin: auto;
874:     }
875: 
876:     /* ====================================================== */
877:     /* ======================= NAVBAR ======================== */
878:     /* ====================================================== */
879: 
880:     .navbar {
The above content does NOT show the entire file contents. If you need to view any lines of the file which were not shown to complete your task, call this tool again to view those lines.
