From 036c36f6aa31ffdb46f0d82f4c89feb685d887f9 Mon Sep 17 00:00:00 2001 From: sitaamirasyarifah Date: Sat, 24 Feb 2024 10:21:22 +0700 Subject: [PATCH] create car, car list dan edit car html --- src/main/resources/templates/CarList.html | 44 +++++++++++++++++++++ src/main/resources/templates/CreateCar.html | 33 ++++++++++++++++ src/main/resources/templates/EditCar.html | 36 +++++++++++++++++ 3 files changed, 113 insertions(+) create mode 100644 src/main/resources/templates/CarList.html create mode 100644 src/main/resources/templates/CreateCar.html create mode 100644 src/main/resources/templates/EditCar.html diff --git a/src/main/resources/templates/CarList.html b/src/main/resources/templates/CarList.html new file mode 100644 index 0000000..4f2057c --- /dev/null +++ b/src/main/resources/templates/CarList.html @@ -0,0 +1,44 @@ + + + + + Car List + + + + +
+

Car' List

+ Create Car + + + + + + + + + + + + + + + + + + + +
Car NameQuantityColor
+ Edit + +
+ + +
+
+
+ + + + \ No newline at end of file diff --git a/src/main/resources/templates/CreateCar.html b/src/main/resources/templates/CreateCar.html new file mode 100644 index 0000000..2d73854 --- /dev/null +++ b/src/main/resources/templates/CreateCar.html @@ -0,0 +1,33 @@ + + + + + Create New Car + + + + +
+

Create New Car

+ +
+
+ + +
+
+ + +
+
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/src/main/resources/templates/EditCar.html b/src/main/resources/templates/EditCar.html new file mode 100644 index 0000000..b38d7f5 --- /dev/null +++ b/src/main/resources/templates/EditCar.html @@ -0,0 +1,36 @@ + + + + + + + Edit Car + + +
+

Edit Car

+ +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+
+ + \ No newline at end of file