From cfaaab0277e660b587648feddab71ed97afc804e Mon Sep 17 00:00:00 2001 From: bewe <93899302+bernarduswillson@users.noreply.github.com> Date: Fri, 17 Nov 2023 14:51:42 +0700 Subject: [PATCH] feat: README --- README.md | 25 +++++++++++++++++++++++++ app/views/exercise/index.php | 14 -------------- 2 files changed, 25 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 12c2c2a..792bf1b 100644 --- a/README.md +++ b/README.md @@ -129,4 +129,29 @@ TOCO is a web application designed to help users learn a new language . With TOC - [x] transaction overview  +### _Server Side_ + +| Fitur | NIM | +| ------------------------ | -------- | +| Buy | 13521021| +| Submit | 13521021 | +| Voucher | 13521021 | +| Exercise | 13521021 | +| Transaction | 13521021 | +| Merch | 13521021 | +### _Client Side_ + +| Fitur | NIM | +| ------------------------ | -------- | +| Exercise | 13521021| +| Merchandise | 13521021 | +| Transaction | 13521021 | + +## Bonus +- [x] Responsive Design +- Mobile +- Tablet +- Laptop +- Desktop +- [x] Docker \ No newline at end of file diff --git a/app/views/exercise/index.php b/app/views/exercise/index.php index 55a3a7a..1cd8f5c 100644 --- a/app/views/exercise/index.php +++ b/app/views/exercise/index.php @@ -8,20 +8,6 @@ $selectedLanguageId = isset($_GET['language']) ? (int) $_GET['language'] : -1; Exercise </h1> - <form id="search-filter-sort-form" action="" method="GET"> - <div class="input-container"> - <div class="filter-sort"> - <select name="language" id="language-input" class="text-sm font-reg text-black"> - <option value="-1" <?php echo ($selectedLanguageId === -1) ? "selected" : ""; ?>>All languages</option> - <?php foreach ($data["languages"] as $language): ?> - <option value="<?= $language["language_id"] ?>" <?php echo ($selectedLanguageId == $language["language_id"]) ? "selected" : ""; ?>> - <?= $language["language_name"] ?> - </option> - <?php endforeach; ?> - </select> - </div> - </div> - <div class="card-container" id="exercise-container"> <?php foreach ($data['exercise'] as $exercise): ?> <div class="exercise-card"> -- GitLab