From c80db110d282d1118871f2827a65cd849b71875f Mon Sep 17 00:00:00 2001 From: Claudia Cristovani Date: Mon, 17 Nov 2025 13:43:00 +0700 Subject: [PATCH 01/24] initial commit --- koneksi.php | 12 +++++++ login.php | 45 ++++++++++++++++++++++++++ week13.php | 60 ++++++++++++++++++++++++++++++++++ weektigabelas.php | 82 +++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 199 insertions(+) create mode 100644 koneksi.php create mode 100644 login.php create mode 100644 week13.php create mode 100644 weektigabelas.php diff --git a/koneksi.php b/koneksi.php new file mode 100644 index 0000000..33b3d61 --- /dev/null +++ b/koneksi.php @@ -0,0 +1,12 @@ + \ No newline at end of file diff --git a/login.php b/login.php new file mode 100644 index 0000000..4832e8c --- /dev/null +++ b/login.php @@ -0,0 +1,45 @@ +";//kalo di file yang sama + echo "lastname:".$row['lastname']."
"; + } + else echo "Username/password salah"; +} +?> + + + +
+ Username:
+ Password:
+ +
+ + \ No newline at end of file diff --git a/week13.php b/week13.php new file mode 100644 index 0000000..aef7330 --- /dev/null +++ b/week13.php @@ -0,0 +1,60 @@ +";} + else if ($umur>60) + echo "Tidak perlu buat KTP
"; + else echo "Sudah boleh buat KTP
"; + if (isset($_POST['n'])) + $n = $_POST['n']; + else $n=0; + //cetak segitiga + for($i=1;$i<=$n;$i++) + { + for ($j=1;$j<=$i;$j++) + { + echo "*"; + } + echo("
"); + }*/ + if (isset($_POST['username'])) + $username = $_POST['username']; + else $username=''; + if (isset($_POST['firstname'])) + $firstname = $_POST['firstname']; + else $firstname=''; + if (isset($_POST['lastname'])) + $lastname = $_POST['lastname']; + else $lastname=''; + if (isset($_POST['password'])) + $password = md5($_POST['password']); + else $password=''; + + //insert data ke table user_error + if ($username!='' || $firstname='' || $lastname='' || $password='') + { + $sql ="insert into user(username, firstname, lastname, password) values('$username', '$firstname', '$lastname','$password')"; + if (mysqli_query($conn,$sql)){ + echo "insert berhasil";} + else echo "error:",mysqli_error($conn); + } + + +?> + + + +
+ Username:
+ Firstname:
+ Lastname:
+ Password:
+ + +
+ + \ No newline at end of file diff --git a/weektigabelas.php b/weektigabelas.php new file mode 100644 index 0000000..c62019e --- /dev/null +++ b/weektigabelas.php @@ -0,0 +1,82 @@ + + + + + + + + + +
+
".$d['NAMA_BARANG']."
"; + echo ""; + echo "
".$d['HARGA_JUAL']."
"; + echo " +  "; + echo "
"; + } + ?> + +
A a
+
+
a
+
a
+
+ +
ayam
+ + + + + From 9bc9e4f7968b5fe54522651c7dc59471fe7061db Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Mon, 17 Nov 2025 01:44:32 -0500 Subject: [PATCH 02/24] koneksi.php --- koneksi.php | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 koneksi.php diff --git a/koneksi.php b/koneksi.php deleted file mode 100644 index 33b3d61..0000000 --- a/koneksi.php +++ /dev/null @@ -1,12 +0,0 @@ - \ No newline at end of file From b38f8b4923542f4eaeb749913fa381e8dd1d2aae Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Mon, 17 Nov 2025 01:44:51 -0500 Subject: [PATCH 03/24] login.php --- login.php | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 login.php diff --git a/login.php b/login.php deleted file mode 100644 index 4832e8c..0000000 --- a/login.php +++ /dev/null @@ -1,45 +0,0 @@ -";//kalo di file yang sama - echo "lastname:".$row['lastname']."
"; - } - else echo "Username/password salah"; -} -?> - - - -
- Username:
- Password:
- -
- - \ No newline at end of file From 1e6e5e59e76d979ab2d3724be9dc1d2034461f99 Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Mon, 17 Nov 2025 01:45:01 -0500 Subject: [PATCH 04/24] week13.php --- week13.php | 60 ------------------------------------------------------ 1 file changed, 60 deletions(-) delete mode 100644 week13.php diff --git a/week13.php b/week13.php deleted file mode 100644 index aef7330..0000000 --- a/week13.php +++ /dev/null @@ -1,60 +0,0 @@ -";} - else if ($umur>60) - echo "Tidak perlu buat KTP
"; - else echo "Sudah boleh buat KTP
"; - if (isset($_POST['n'])) - $n = $_POST['n']; - else $n=0; - //cetak segitiga - for($i=1;$i<=$n;$i++) - { - for ($j=1;$j<=$i;$j++) - { - echo "*"; - } - echo("
"); - }*/ - if (isset($_POST['username'])) - $username = $_POST['username']; - else $username=''; - if (isset($_POST['firstname'])) - $firstname = $_POST['firstname']; - else $firstname=''; - if (isset($_POST['lastname'])) - $lastname = $_POST['lastname']; - else $lastname=''; - if (isset($_POST['password'])) - $password = md5($_POST['password']); - else $password=''; - - //insert data ke table user_error - if ($username!='' || $firstname='' || $lastname='' || $password='') - { - $sql ="insert into user(username, firstname, lastname, password) values('$username', '$firstname', '$lastname','$password')"; - if (mysqli_query($conn,$sql)){ - echo "insert berhasil";} - else echo "error:",mysqli_error($conn); - } - - -?> - - - -
- Username:
- Firstname:
- Lastname:
- Password:
- - -
- - \ No newline at end of file From 9af2a7e3e9e023d398d17c44af8508b1ac6a4007 Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Mon, 17 Nov 2025 01:45:14 -0500 Subject: [PATCH 05/24] weektigabelas.php --- weektigabelas.php | 82 ----------------------------------------------- 1 file changed, 82 deletions(-) delete mode 100644 weektigabelas.php diff --git a/weektigabelas.php b/weektigabelas.php deleted file mode 100644 index c62019e..0000000 --- a/weektigabelas.php +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - -
-
".$d['NAMA_BARANG']."
"; - echo ""; - echo "
".$d['HARGA_JUAL']."
"; - echo " -  "; - echo "
"; - } - ?> - -
A a
-
-
a
-
a
-
- -
ayam
- - - - - From 8476e95cf838a427636681612c654d63aa20c0f4 Mon Sep 17 00:00:00 2001 From: 5803025014 Date: Mon, 17 Nov 2025 02:26:35 -0500 Subject: [PATCH 06/24] Upload files to "/" --- alex git.html | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 alex git.html diff --git a/alex git.html b/alex git.html new file mode 100644 index 0000000..83ddc6b --- /dev/null +++ b/alex git.html @@ -0,0 +1,8 @@ + + + Git Commit Alexander + + +

Ini baru percobaan git commit ahayyy

+ + \ No newline at end of file From ba5576697c59a4475a70cc73b40b3fe6f86c8882 Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Mon, 17 Nov 2025 02:28:31 -0500 Subject: [PATCH 07/24] Upload files to "/" --- Form Profile.html | 148 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 Form Profile.html diff --git a/Form Profile.html b/Form Profile.html new file mode 100644 index 0000000..6a74ff6 --- /dev/null +++ b/Form Profile.html @@ -0,0 +1,148 @@ + + + + + + Profile Editor + + + + +

Profile Editor

+ +
+ + + + + + + + + + + +
+ +
+

Daftar Profile

+
+
+ + + + + \ No newline at end of file From bd152adfe1ac8b3261c3288a84ba6aa7aef51c23 Mon Sep 17 00:00:00 2001 From: 5803025013 Date: Mon, 17 Nov 2025 02:33:51 -0500 Subject: [PATCH 08/24] Upload files to "/" --- cliffjs.git.html | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cliffjs.git.html diff --git a/cliffjs.git.html b/cliffjs.git.html new file mode 100644 index 0000000..8d948e4 --- /dev/null +++ b/cliffjs.git.html @@ -0,0 +1,5 @@ + + Test Cliff Julyano - 5803025013 +

Haloo, Aku Cliff Julyano

+

Dengan NRP : 5803025013

+ \ No newline at end of file From d92392939a1a2c7c1c45b296b36694fe060ab6c8 Mon Sep 17 00:00:00 2001 From: alexander Date: Mon, 17 Nov 2025 14:49:37 +0700 Subject: [PATCH 09/24] ini dari alex --- read.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 read.md diff --git a/read.md b/read.md new file mode 100644 index 0000000..9ff9b3e --- /dev/null +++ b/read.md @@ -0,0 +1 @@ +nama : Tebak kartu From 4d9277ebe9b6cd32d7f2b12552ce5d88a0cf9558 Mon Sep 17 00:00:00 2001 From: Cliff Date: Mon, 17 Nov 2025 14:55:38 +0700 Subject: [PATCH 10/24] aku cliff --- readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..7e2fc48 --- /dev/null +++ b/readme.md @@ -0,0 +1 @@ +ini cliff \ No newline at end of file From 83006c88b6e702b4f8c46517e921de91f9490d1b Mon Sep 17 00:00:00 2001 From: Cliff Date: Mon, 17 Nov 2025 15:17:22 +0700 Subject: [PATCH 11/24] mantap --- yanto.html | 367 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 367 insertions(+) create mode 100644 yanto.html diff --git a/yanto.html b/yanto.html new file mode 100644 index 0000000..0ba9c81 --- /dev/null +++ b/yanto.html @@ -0,0 +1,367 @@ + + + + + + OCA Gaming Hub - Kelompok 8 + + + + +
+
+ + +
+
+ + +
+

Welcome to OCA Gaming Hub

+

Kelompok 8 - Gaming & Tech Excellence

+ +
+ + +
+
+

Popular Games

+
+
+
🎮
+
+

Action Quest

+

Epic adventure with challenging levels and thrilling gameplay

+
+
+ +
+
👾
+
+

Space Invaders

+

Classic arcade style game with modern graphics

+
+
+ +
+
+
+

Battle Arena

+

Multiplayer competitive gaming experience

+
+
+ +
+
🏆
+
+

Champion League

+

Tournament mode with exciting rewards

+
+
+ +
+
🌟
+
+

Galaxy Explorer

+

Explore infinite space and discover new worlds

+
+
+ +
+
💎
+
+

Treasure Hunt

+

Puzzle-solving adventure with hidden treasures

+
+
+
+
+
+ + +
+
+

Our Team - Kelompok 8

+
+
+

Ody

+

Game Developer & Designer

+

Lead Developer

+
+ +
+

Alex

+

Frontend & UI Developer

+

Web Specialist

+
+ +
+

Cliff

+

Backend & Systems Engineer

+

Infrastructure

+
+
+
+
+ + +
+
+

Get in Touch

+
+

Contact us for gaming opportunities & collaborations

+ Send Email +
+
+
+ + +
+

© 2025 OCA Gaming Hub - Kelompok 8 (Ody, Alex, Cliff)

+

Gaming Excellence Through Innovation

+
+ + \ No newline at end of file From e80d95d2b0795e823dd0174d2ea5f8788ee4b23a Mon Sep 17 00:00:00 2001 From: alexander Date: Mon, 17 Nov 2025 15:20:41 +0700 Subject: [PATCH 12/24] iki alex --- alex git.html | 373 +++++++++++++++++++++++++++++++++++++++++++++++++- index.html | 367 +++++++++++++++++++++++++++++++++++++++++++++++++ read.md | 1 + 3 files changed, 734 insertions(+), 7 deletions(-) create mode 100644 index.html diff --git a/alex git.html b/alex git.html index 83ddc6b..b857d99 100644 --- a/alex git.html +++ b/alex git.html @@ -1,8 +1,367 @@ - - - Git Commit Alexander - - -

Ini baru percobaan git commit ahayyy

- + + + + + + OCA Gaming Hub - Kelompok 8 + + + + +
+
+ + +
+
+ + +
+

Welcome to OCA Gaming Hub

+

Kelompok 8 - Gaming & Tech Excellence

+ +
+ + +
+
+

Popular Games

+
+
+
🎮
+
+

Action Quest

+

Epic adventure with challenging levels and thrilling gameplay

+
+
+ +
+
👾
+
+

Space Invaders

+

Classic arcade style game with modern graphics

+
+
+ +
+
⚔️
+
+

Battle Arena

+

Multiplayer competitive gaming experience

+
+
+ +
+
🏆
+
+

Champion League

+

Tournament mode with exciting rewards

+
+
+ +
+
🌟
+
+

Galaxy Explorer

+

Explore infinite space and discover new worlds

+
+
+ +
+
💎
+
+

Treasure Hunt

+

Puzzle-solving adventure with hidden treasures

+
+
+
+
+
+ + +
+
+

Our Team - Kelompok 8

+
+
+

Ody

+

Game Developer & Designer

+

Lead Developer

+
+ +
+

Alex

+

Frontend & UI Developer

+

Web Specialist

+
+ +
+

Cliff

+

Backend & Systems Engineer

+

Infrastructure

+
+
+
+
+ + +
+
+

Get in Touch

+
+

Contact us for gaming opportunities & collaborations

+ Send Email +
+
+
+ + +
+

© 2025 OCA Gaming Hub - Kelompok 8 (Ody, Alex, Cliff)

+

Gaming Excellence Through Innovation

+
+ \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..f8fc531 --- /dev/null +++ b/index.html @@ -0,0 +1,367 @@ + + + + + + OCA Gaming Hub - Kelompok 8 + + + + +
+
+ + +
+
+ + +
+

Welcome to OCA Gaming Hub

+

Kelompok 8 - Gaming & Tech Excellence

+ +
+ + +
+
+

Popular Games

+
+
+
🎮
+
+

Action Quest

+

Epic adventure with challenging levels and thrilling gameplay

+
+
+ +
+
👾
+
+

Space Invaders

+

Classic arcade style game with modern graphics

+
+
+ +
+
⚔️
+
+

Battle Arena

+

Multiplayer competitive gaming experience

+
+
+ +
+
🏆
+
+

Champion League

+

Tournament mode with exciting rewards

+
+
+ +
+
🌟
+
+

Galaxy Explorer

+

Explore infinite space and discover new worlds

+
+
+ +
+
💎
+
+

Treasure Hunt

+

Puzzle-solving adventure with hidden treasures

+
+
+
+
+
+ + +
+
+

Our Team - Kelompok 8

+
+
+

Ody

+

Game Developer & Designer

+

Lead Developer

+
+ +
+

Alex

+

Frontend & UI Developer

+

Web Specialist

+
+ +
+

Cliff

+

Backend & Systems Engineer

+

Infrastructure

+
+
+
+
+ + +
+
+

Get in Touch

+
+

Contact us for gaming opportunities & collaborations

+ Send Email +
+
+
+ + +
+

© 2025 OCA Gaming Hub - Kelompok 8 (Ody, Alex, Cliff)

+

Gaming Excellence Through Innovation

+
+ + \ No newline at end of file diff --git a/read.md b/read.md index 9ff9b3e..cf2f5d3 100644 --- a/read.md +++ b/read.md @@ -1 +1,2 @@ nama : Tebak kartu +haha hihi haha hiuhu From 8d6d91ec7ee5163cec8914caa5d199df0b0396df Mon Sep 17 00:00:00 2001 From: alexander Date: Mon, 17 Nov 2025 15:24:13 +0700 Subject: [PATCH 13/24] el sigma --- haha.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 haha.md diff --git a/haha.md b/haha.md new file mode 100644 index 0000000..a808635 --- /dev/null +++ b/haha.md @@ -0,0 +1 @@ +ya aku mau test \ No newline at end of file From af43b19f06a1abdafc23df47c70318b54dc0b1cb Mon Sep 17 00:00:00 2001 From: ody Date: Mon, 17 Nov 2025 15:30:40 +0700 Subject: [PATCH 14/24] poke --- ody.html | 1 + 1 file changed, 1 insertion(+) create mode 100644 ody.html diff --git a/ody.html b/ody.html new file mode 100644 index 0000000..3941e2a --- /dev/null +++ b/ody.html @@ -0,0 +1 @@ + Ody From 0707d591ff228a383d9bfdb299140f3b2643c68d Mon Sep 17 00:00:00 2001 From: ody Date: Mon, 17 Nov 2025 15:33:35 +0700 Subject: [PATCH 15/24] AHOK 2025 --- ahok.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ahok.html diff --git a/ahok.html b/ahok.html new file mode 100644 index 0000000..83566cf --- /dev/null +++ b/ahok.html @@ -0,0 +1,11 @@ + + + + + + HELLO WORLD + + + + + \ No newline at end of file From c0d3f84cfbaf47d72ae979ce439adb026003752f Mon Sep 17 00:00:00 2001 From: alexander Date: Mon, 17 Nov 2025 15:35:02 +0700 Subject: [PATCH 16/24] coba --- ai.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 ai.md diff --git a/ai.md b/ai.md new file mode 100644 index 0000000..3d96d82 --- /dev/null +++ b/ai.md @@ -0,0 +1 @@ +kelaz king \ No newline at end of file From 462c4f2f1f288b87e37a045a5f7b6356f2f79203 Mon Sep 17 00:00:00 2001 From: alexander Date: Thu, 20 Nov 2025 16:47:16 +0700 Subject: [PATCH 17/24] revisi --- Form Profile.html | 148 ------------------- ahok.html | 11 -- ai.md | 1 - haha.md | 1 - ody.html | 1 - readme.md | 1 - yanto.html | 367 ---------------------------------------------- 7 files changed, 530 deletions(-) delete mode 100644 Form Profile.html delete mode 100644 ahok.html delete mode 100644 ai.md delete mode 100644 haha.md delete mode 100644 ody.html delete mode 100644 readme.md delete mode 100644 yanto.html diff --git a/Form Profile.html b/Form Profile.html deleted file mode 100644 index 6a74ff6..0000000 --- a/Form Profile.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Profile Editor - - - - -

Profile Editor

- -
- - - - - - - - - - - -
- -
-

Daftar Profile

-
-
- - - - - \ No newline at end of file diff --git a/ahok.html b/ahok.html deleted file mode 100644 index 83566cf..0000000 --- a/ahok.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - HELLO WORLD - - - - - \ No newline at end of file diff --git a/ai.md b/ai.md deleted file mode 100644 index 3d96d82..0000000 --- a/ai.md +++ /dev/null @@ -1 +0,0 @@ -kelaz king \ No newline at end of file diff --git a/haha.md b/haha.md deleted file mode 100644 index a808635..0000000 --- a/haha.md +++ /dev/null @@ -1 +0,0 @@ -ya aku mau test \ No newline at end of file diff --git a/ody.html b/ody.html deleted file mode 100644 index 3941e2a..0000000 --- a/ody.html +++ /dev/null @@ -1 +0,0 @@ - Ody diff --git a/readme.md b/readme.md deleted file mode 100644 index 7e2fc48..0000000 --- a/readme.md +++ /dev/null @@ -1 +0,0 @@ -ini cliff \ No newline at end of file diff --git a/yanto.html b/yanto.html deleted file mode 100644 index 0ba9c81..0000000 --- a/yanto.html +++ /dev/null @@ -1,367 +0,0 @@ - - - - - - OCA Gaming Hub - Kelompok 8 - - - - -
-
- - -
-
- - -
-

Welcome to OCA Gaming Hub

-

Kelompok 8 - Gaming & Tech Excellence

- -
- - -
-
-

Popular Games

-
-
-
🎮
-
-

Action Quest

-

Epic adventure with challenging levels and thrilling gameplay

-
-
- -
-
👾
-
-

Space Invaders

-

Classic arcade style game with modern graphics

-
-
- -
-
-
-

Battle Arena

-

Multiplayer competitive gaming experience

-
-
- -
-
🏆
-
-

Champion League

-

Tournament mode with exciting rewards

-
-
- -
-
🌟
-
-

Galaxy Explorer

-

Explore infinite space and discover new worlds

-
-
- -
-
💎
-
-

Treasure Hunt

-

Puzzle-solving adventure with hidden treasures

-
-
-
-
-
- - -
-
-

Our Team - Kelompok 8

-
-
-

Ody

-

Game Developer & Designer

-

Lead Developer

-
- -
-

Alex

-

Frontend & UI Developer

-

Web Specialist

-
- -
-

Cliff

-

Backend & Systems Engineer

-

Infrastructure

-
-
-
-
- - -
-
-

Get in Touch

-
-

Contact us for gaming opportunities & collaborations

- Send Email -
-
-
- - -
-

© 2025 OCA Gaming Hub - Kelompok 8 (Ody, Alex, Cliff)

-

Gaming Excellence Through Innovation

-
- - \ No newline at end of file From 2310f94ae69e6e3349e5ca378e9d02623dc8b656 Mon Sep 17 00:00:00 2001 From: alexander Date: Thu, 20 Nov 2025 16:52:49 +0700 Subject: [PATCH 18/24] mantap --- index.html | 367 ----------------------------------------------------- 1 file changed, 367 deletions(-) delete mode 100644 index.html diff --git a/index.html b/index.html deleted file mode 100644 index f8fc531..0000000 --- a/index.html +++ /dev/null @@ -1,367 +0,0 @@ - - - - - - OCA Gaming Hub - Kelompok 8 - - - - -
-
- - -
-
- - -
-

Welcome to OCA Gaming Hub

-

Kelompok 8 - Gaming & Tech Excellence

- -
- - -
-
-

Popular Games

-
-
-
🎮
-
-

Action Quest

-

Epic adventure with challenging levels and thrilling gameplay

-
-
- -
-
👾
-
-

Space Invaders

-

Classic arcade style game with modern graphics

-
-
- -
-
⚔️
-
-

Battle Arena

-

Multiplayer competitive gaming experience

-
-
- -
-
🏆
-
-

Champion League

-

Tournament mode with exciting rewards

-
-
- -
-
🌟
-
-

Galaxy Explorer

-

Explore infinite space and discover new worlds

-
-
- -
-
💎
-
-

Treasure Hunt

-

Puzzle-solving adventure with hidden treasures

-
-
-
-
-
- - -
-
-

Our Team - Kelompok 8

-
-
-

Ody

-

Game Developer & Designer

-

Lead Developer

-
- -
-

Alex

-

Frontend & UI Developer

-

Web Specialist

-
- -
-

Cliff

-

Backend & Systems Engineer

-

Infrastructure

-
-
-
-
- - -
-
-

Get in Touch

-
-

Contact us for gaming opportunities & collaborations

- Send Email -
-
-
- - -
-

© 2025 OCA Gaming Hub - Kelompok 8 (Ody, Alex, Cliff)

-

Gaming Excellence Through Innovation

-
- - \ No newline at end of file From d825e810ec89b5c0f08d7ea95163f5ce27c29da7 Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Thu, 20 Nov 2025 04:54:58 -0500 Subject: [PATCH 19/24] Upload files to "/" --- GAMES#2.html | 254 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 254 insertions(+) create mode 100644 GAMES#2.html diff --git a/GAMES#2.html b/GAMES#2.html new file mode 100644 index 0000000..a130c97 --- /dev/null +++ b/GAMES#2.html @@ -0,0 +1,254 @@ + + + + + + Blackjack [21] + + + +
+
+

Blackjack [21]

+
+
+
Bank: 1000
+
Taruhan: 0
+
+
+ + + +
+
+
+ +
+
+
Dealer
+
+
+
+ +
+
Pemain
+
+
+ +
+ + + +
+
+
+
+ +
+ OCA GameHub - Blackjack_[21] - No Iklan - Play free in your device! +
+
+ + + + + From c2b5e27083ab0359d96fe842d34e7f1700eba766 Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Thu, 20 Nov 2025 05:07:56 -0500 Subject: [PATCH 20/24] Add All-in --- All-in | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 All-in diff --git a/All-in b/All-in new file mode 100644 index 0000000..e69de29 From 61bbeea2e724b3755a249294cd74b6168ac8e39f Mon Sep 17 00:00:00 2001 From: 5803025051 Date: Thu, 20 Nov 2025 05:08:18 -0500 Subject: [PATCH 21/24] All-in --- All-in | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 All-in diff --git a/All-in b/All-in deleted file mode 100644 index e69de29..0000000 From 34dc5d702879512c41648e60a3de12d1de21309a Mon Sep 17 00:00:00 2001 From: Cliff Date: Thu, 20 Nov 2025 17:13:15 +0700 Subject: [PATCH 22/24] oke --- Form Profile.html | 148 ++++++++++++++++++++++++++++++++++++++++++++++ cliffjs.git.html | 5 -- 2 files changed, 148 insertions(+), 5 deletions(-) create mode 100644 Form Profile.html delete mode 100644 cliffjs.git.html diff --git a/Form Profile.html b/Form Profile.html new file mode 100644 index 0000000..c5caf71 --- /dev/null +++ b/Form Profile.html @@ -0,0 +1,148 @@ + + + + + + Profile Editor + + + + +

Profile Editor

+ +
+ + + + + + + + + + + +
+ +
+

Daftar Profile

+
+
+ + + + + \ No newline at end of file diff --git a/cliffjs.git.html b/cliffjs.git.html deleted file mode 100644 index 8d948e4..0000000 --- a/cliffjs.git.html +++ /dev/null @@ -1,5 +0,0 @@ - - Test Cliff Julyano - 5803025013 -

Haloo, Aku Cliff Julyano

-

Dengan NRP : 5803025013

- \ No newline at end of file From eac2bfad2d3f8ced2581e89984a5e9ffae9e67e2 Mon Sep 17 00:00:00 2001 From: ody Date: Thu, 20 Nov 2025 17:18:37 +0700 Subject: [PATCH 23/24] java --- ody git.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 ody git.html diff --git a/ody git.html b/ody git.html new file mode 100644 index 0000000..e69de29 From b85ed0e0b44632ac15f9554bfb8602562754131f Mon Sep 17 00:00:00 2001 From: Cliff Date: Thu, 20 Nov 2025 17:21:51 +0700 Subject: [PATCH 24/24] css cliff --- GAMES#2.html | 28 ---------------------------- cliff.git.html | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 cliff.git.html diff --git a/GAMES#2.html b/GAMES#2.html index a130c97..b166e17 100644 --- a/GAMES#2.html +++ b/GAMES#2.html @@ -4,34 +4,6 @@ Blackjack [21] -
diff --git a/cliff.git.html b/cliff.git.html new file mode 100644 index 0000000..f791590 --- /dev/null +++ b/cliff.git.html @@ -0,0 +1,28 @@ + \ No newline at end of file