Skip to content
Snippets Groups Projects
Commit cfaaab02 authored by bewe's avatar bewe
Browse files

feat: README

parent 2c30c489
No related merge requests found
...@@ -129,4 +129,29 @@ TOCO is a web application designed to help users learn a new language . With TOC ...@@ -129,4 +129,29 @@ TOCO is a web application designed to help users learn a new language . With TOC
- [x] transaction overview - [x] transaction overview
![transaction](img/trans.jpg) ![transaction](img/trans.jpg)
### _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
...@@ -8,20 +8,6 @@ $selectedLanguageId = isset($_GET['language']) ? (int) $_GET['language'] : -1; ...@@ -8,20 +8,6 @@ $selectedLanguageId = isset($_GET['language']) ? (int) $_GET['language'] : -1;
Exercise Exercise
</h1> </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"> <div class="card-container" id="exercise-container">
<?php foreach ($data['exercise'] as $exercise): ?> <?php foreach ($data['exercise'] as $exercise): ?>
<div class="exercise-card"> <div class="exercise-card">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment