diff --git a/15-multi-step-form/src/main/resources/public/images/tail-spin.svg b/15-multi-step-form/src/main/resources/public/images/tail-spin.svg new file mode 100644 index 0000000..e40da29 --- /dev/null +++ b/15-multi-step-form/src/main/resources/public/images/tail-spin.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/15-multi-step-form/src/main/resources/public/out.css b/15-multi-step-form/src/main/resources/public/out.css index bf005ab..bc64c84 100644 --- a/15-multi-step-form/src/main/resources/public/out.css +++ b/15-multi-step-form/src/main/resources/public/out.css @@ -834,6 +834,10 @@ video { background-repeat: no-repeat; } +.fill-current { + fill: currentColor; +} + .p-1 { padding: 0.25rem; } @@ -927,6 +931,11 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } +.text-green-500 { + --tw-text-opacity: 1; + color: rgb(34 197 94 / var(--tw-text-opacity)); +} + .drop-shadow-xl { --tw-drop-shadow: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08)); filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); diff --git a/15-multi-step-form/src/main/resources/templates/index.html b/15-multi-step-form/src/main/resources/templates/index.html index 5c9e2b6..e1683c8 100644 --- a/15-multi-step-form/src/main/resources/templates/index.html +++ b/15-multi-step-form/src/main/resources/templates/index.html @@ -12,11 +12,12 @@ th:href="'public/images/favicon-32x32.png'" href="../public/images/favicon-32x32.png" /> - - + + Frontend Mentor | Multi-step form @@ -31,15 +32,22 @@ -
-
- +
+ +
+ loading... +
+ +
+
+
+ Challenge by + Frontend Mentor. Coded by Your Name Here. +
diff --git a/15-multi-step-form/src/main/resources/templates/step1.html b/15-multi-step-form/src/main/resources/templates/step1.html index 459dd72..a09450b 100644 --- a/15-multi-step-form/src/main/resources/templates/step1.html +++ b/15-multi-step-form/src/main/resources/templates/step1.html @@ -35,7 +35,7 @@

-
@@ -137,7 +137,7 @@ >Next Step
- +
Challenge by