Please provide your name, email address, and phone number.
- + + + +diff --git a/15-multi-step-form/build.sbt b/15-multi-step-form/build.sbt index ebb5ed3..2140cbb 100644 --- a/15-multi-step-form/build.sbt +++ b/15-multi-step-form/build.sbt @@ -11,6 +11,7 @@ lazy val multiStepForm = (project in file(".")) libraryDependencies ++= Seq( "com.lihaoyi" %% "cask" % "0.9.1", "com.lihaoyi" %% "mainargs" % "0.5.0", - "org.thymeleaf" % "thymeleaf" % "3.1.1.RELEASE" + "org.thymeleaf" % "thymeleaf" % "3.1.1.RELEASE", + "com.googlecode.libphonenumber" % "libphonenumber" % "8.13.16" ) ) 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 b8895df..52e2faf 100644 --- a/15-multi-step-form/src/main/resources/public/out.css +++ b/15-multi-step-form/src/main/resources/public/out.css @@ -572,10 +572,6 @@ video { grid-row: span 2 / span 2; } -.row-span-full { - grid-row: 1 / -1; -} - .row-start-1 { grid-row-start: 1; } @@ -655,6 +651,10 @@ video { display: inline-grid; } +.contents { + display: contents; +} + .hidden { display: none; } @@ -777,14 +777,6 @@ video { grid-template-columns: repeat(4, auto); } -.grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); -} - -.grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); -} - .flex-row { flex-direction: row; } @@ -879,6 +871,11 @@ video { border-color: rgb(255 255 255 / var(--tw-border-opacity)); } +.border-strawberry-red { + --tw-border-opacity: 1; + border-color: hsl(354 84% 57% / var(--tw-border-opacity)); +} + .\!bg-light-blue { --tw-bg-opacity: 1 !important; background-color: hsl(206 94% 87% / var(--tw-bg-opacity)) !important; @@ -1063,6 +1060,11 @@ video { color: rgb(255 255 255 / var(--tw-text-opacity)); } +.text-strawberry-red { + --tw-text-opacity: 1; + color: hsl(354 84% 57% / var(--tw-text-opacity)); +} + .underline { text-decoration-line: underline; } 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 417fba0..cbeaeaa 100644 --- a/15-multi-step-form/src/main/resources/templates/index.html +++ b/15-multi-step-form/src/main/resources/templates/index.html @@ -33,13 +33,14 @@
Please provide your name, email address, and phone number.
- + + + +