diff --git a/daftar.php b/daftar.php
index b6facd6..842d42d 100644
--- a/daftar.php
+++ b/daftar.php
@@ -5,6 +5,12 @@ include "koneksi.php";
+
diff --git a/game.html b/game.html
index 6b3cdac..2993d51 100644
--- a/game.html
+++ b/game.html
@@ -26,7 +26,10 @@
YOU DIED
Score: 0
-
+
+
+
+
diff --git a/gameOver/gameOver.png b/gameOver/gameOver.png
new file mode 100644
index 0000000..2cefafe
Binary files /dev/null and b/gameOver/gameOver.png differ
diff --git a/home.html b/home.html
deleted file mode 100644
index 756a1fd..0000000
--- a/home.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- EAT THAT APPLE
-
-
Play Game
-
Leaderboard
-
Quit
-
-
-
-
-
\ No newline at end of file
diff --git a/index.php b/index.php
index 0ec3d92..8273ac7 100644
--- a/index.php
+++ b/index.php
@@ -1,26 +1,82 @@
-
-
-
- Halaman ke-1
-
-
- Halaman ke-1
- Home
- Logout
-
+
+
+
+
+
+
+ Halaman ke-1
+
+
+ EAT THAT APPLE
+
+
+
+ Selamat datang,
+
+
+
+
+
\ No newline at end of file
diff --git a/leaderboard.php b/leaderboard.php
new file mode 100644
index 0000000..0262f84
--- /dev/null
+++ b/leaderboard.php
@@ -0,0 +1,84 @@
+ 0) {
+ $row = mysqli_fetch_assoc($resultMe);
+ $score = $row['score'];
+ }
+}
+
+$sql = "SELECT username, score FROM users ORDER BY score DESC LIMIT 10";
+$result = mysqli_query($koneksi, $sql);
+$leaderboard = [];
+
+if($result) {
+ $leaderboard = mysqli_fetch_all($result, MYSQLI_ASSOC);
+}
+?>
+
+
+
+
+
+
+
+
+ Leaderboard
+
+
+
+
+
+
+
+ | # |
+ Username |
+ Score |
+
+
+
+
+
+
+ |
+ |
+
+ PTS |
+
+
+
+ Belum ada Pemain | ';
+ }
+
+ ?>
+
+
+
+
+
\ No newline at end of file
diff --git a/login.php b/login.php
index dce79d1..1472553 100644
--- a/login.php
+++ b/login.php
@@ -1,58 +1,74 @@
+
0) {
+ $data = mysqli_fetch_array($query);
+ $_SESSION['users'] = $data;
+ $_SESSION['username'] = $data = ['username'];
+ echo '';
+ } else {
+ echo '';
+ }
+ }
?>
-
-
-
-
- Halaman: Login
-
-
- 0) {
- $data = mysqli_fetch_array($query);
- $_SESSION['users'] = $data;
- echo '';
- } else {
- echo '';
- }
+
+
+
+
+
+ Halaman: Login
+
+
-
+
+
-
+
\ No newline at end of file
diff --git a/login/log.png b/login/log.png
new file mode 100644
index 0000000..d4eecd0
Binary files /dev/null and b/login/log.png differ
diff --git a/login/login.png b/login/login.png
new file mode 100644
index 0000000..9371108
Binary files /dev/null and b/login/login.png differ
diff --git a/mapGame/mapgame .png b/mapGame/mapgame .png
new file mode 100644
index 0000000..a6cae96
Binary files /dev/null and b/mapGame/mapgame .png differ
diff --git a/succes/loginSuccess.png b/succes/loginSuccess.png
new file mode 100644
index 0000000..f2fc52c
Binary files /dev/null and b/succes/loginSuccess.png differ
diff --git a/succes/logsuc.png b/succes/logsuc.png
new file mode 100644
index 0000000..ac95373
Binary files /dev/null and b/succes/logsuc.png differ
diff --git a/users.sql b/users.sql
new file mode 100644
index 0000000..2ff7650
--- /dev/null
+++ b/users.sql
@@ -0,0 +1,69 @@
+-- phpMyAdmin SQL Dump
+-- version 5.2.0
+-- https://www.phpmyadmin.net/
+--
+-- Host: localhost:3306
+-- Generation Time: Dec 03, 2025 at 05:17 AM
+-- Server version: 8.0.30
+-- PHP Version: 8.1.10
+
+SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
+START TRANSACTION;
+SET time_zone = "+00:00";
+
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8mb4 */;
+
+--
+-- Database: `game`
+--
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `users`
+--
+
+CREATE TABLE `users` (
+ `id_user` int NOT NULL,
+ `nama` varchar(255) DEFAULT NULL,
+ `username` varchar(225) DEFAULT NULL,
+ `password` varchar(255) DEFAULT NULL,
+ `score` int NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+--
+-- Dumping data for table `users`
+--
+
+INSERT INTO `users` (`id_user`, `nama`, `username`, `password`, `score`) VALUES
+(1, 'Chris Daud Koroh', 'daudkoroh', '88d602f1ad6d62b9a11c688ab47fed22', 20),
+(2, 'Zefanya Isaac', 'zefanya', 'de413c0365e3c88d8b3315f9d90b98ae', 68);
+
+--
+-- Indexes for dumped tables
+--
+
+--
+-- Indexes for table `users`
+--
+ALTER TABLE `users`
+ ADD PRIMARY KEY (`id_user`);
+
+--
+-- AUTO_INCREMENT for dumped tables
+--
+
+--
+-- AUTO_INCREMENT for table `users`
+--
+ALTER TABLE `users`
+ MODIFY `id_user` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
+COMMIT;
+
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;