GNU/Weeb Mailing List <[email protected]>
 help / color / mirror / Atom feed
* [PATCH v1 00/13] App for member attendance record at Senayan Park, Jakarta
@ 2022-11-27 20:32 Ammar Faizi
  2022-11-27 20:32 ` [PATCH v1 01/13] Initial index page Ammar Faizi
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Ammar Faizi @ 2022-11-27 20:32 UTC (permalink / raw)
  To: Gilang Fachrezy
  Cc: Ammar Faizi, Taufiq Pohan, Aldy Prastyo,
	Muhammad Fitrah Pandjalu, Nauvalsa Yanandana,
	GNU/Weeb Mailing List, VNLX Kernel Department

Hi Gilang,

We will hold a meet and greet event at Senayan Park, Jakarta on the
3rd and 4th of December 2022. To record the member attendance, we
create a web-based app for the attendance record. The web application
will be offline to ensure we have no network stability issues. There
are 13 patches in this series.

Software used in this app:

   Database: MySQL 8.0
   Backend: PHP 8.1
   Frontend: HTML, Bootstrap, jQuery, select2, Sweetalert2.

Signed-off-by: Muhammad Fitrah Pandjalu <[email protected]>
Signed-off-by: Taufiq Pohan <[email protected]>
Signed-off-by: Nauvalsa Yanandana <[email protected]>
Signed-off-by: Ammar Faizi <[email protected]>
---

Ammar Faizi (13):
  Initial index page
  Add regions.json
  index: Integrate city data with the form
  index: Add social media accounts input
  index: Add a red star to the required fields
  index: city: Add "select the city" option on blank form
  Export the DDL
  Initial work on the database integration
  Create initial API integration
  Add input form validation
  assets: Add sweetalert library
  index: Integrate the sweetalert library with the form
  index: Make sure there is no duplicate submission in the same day

 .gitignore                                    |    1 +
 config.example.php                            |   16 +
 database.sql                                  |  607 +++++
 fill.php                                      |   21 +
 helpers.php                                   |    8 +
 public/api.php                                |  130 +
 .../assets}/css/bootstrap.min.css             |    0
 .../assets}/css/bootstrap.min.css.map         |    0
 public/assets/css/select2.min.css             |    1 +
 public/assets/css/sweetalert2.min.css         |    1 +
 {assets => public/assets}/js/bootstrap.min.js |    0
 .../assets}/js/bootstrap.min.js.map           |    0
 public/assets/js/jquery-3.6.1.min.js          |    2 +
 public/assets/js/select2.full.min.js          |    2 +
 public/assets/js/sweetalert2.all.min.js       |    6 +
 public/assets/regions.json                    | 2239 +++++++++++++++++
 public/index.php                              |  171 ++
 17 files changed, 3205 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 config.example.php
 create mode 100644 database.sql
 create mode 100644 fill.php
 create mode 100644 helpers.php
 create mode 100644 public/api.php
 rename {assets => public/assets}/css/bootstrap.min.css (100%)
 rename {assets => public/assets}/css/bootstrap.min.css.map (100%)
 create mode 100644 public/assets/css/select2.min.css
 create mode 100644 public/assets/css/sweetalert2.min.css
 rename {assets => public/assets}/js/bootstrap.min.js (100%)
 rename {assets => public/assets}/js/bootstrap.min.js.map (100%)
 create mode 100644 public/assets/js/jquery-3.6.1.min.js
 create mode 100644 public/assets/js/select2.full.min.js
 create mode 100644 public/assets/js/sweetalert2.all.min.js
 create mode 100644 public/assets/regions.json
 create mode 100644 public/index.php


base-commit: 762ad574573b1a90a5307538965991c2276affc0
-- 
Ammar Faizi


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2022-11-27 20:33 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-27 20:32 [PATCH v1 00/13] App for member attendance record at Senayan Park, Jakarta Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 01/13] Initial index page Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 02/13] Add regions.json Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 03/13] index: Integrate city data with the form Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 04/13] index: Add social media accounts input Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 05/13] index: Add a red star to the required fields Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 06/13] index: city: Add "select the city" option on blank form Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 07/13] Export the DDL Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 08/13] Initial work on the database integration Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 09/13] Create initial API integration Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 10/13] Add input form validation Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 11/13] assets: Add sweetalert library Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 12/13] index: Integrate the sweetalert library with the form Ammar Faizi
2022-11-27 20:32 ` [PATCH v1 13/13] index: Make sure there is no duplicate submission in the same day Ammar Faizi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox