From 37b1196914c6920de87ec2bce76a0180228c640d Mon Sep 17 00:00:00 2001 From: shadowik Date: Mon, 15 May 2023 03:16:10 +0400 Subject: [PATCH] Lab 6 MVC --- src/main/resources/static/style.css | 25 ++++++++++ src/main/resources/templates/UserPage.html | 55 ++++++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 src/main/resources/static/style.css create mode 100644 src/main/resources/templates/UserPage.html diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css new file mode 100644 index 0000000..07b9627 --- /dev/null +++ b/src/main/resources/static/style.css @@ -0,0 +1,25 @@ +body { + background: #f54d9a; +} + +.logo { + background: #FF9CCE; +} + +main { + padding: 2%; + margin: 10% 5%; +} + +main img { + width: 100%; + object-fit: cover; +} + +form { + padding: 1%; +} + +.product-div { + background: #e874ac; +} \ No newline at end of file diff --git a/src/main/resources/templates/UserPage.html b/src/main/resources/templates/UserPage.html new file mode 100644 index 0000000..2475208 --- /dev/null +++ b/src/main/resources/templates/UserPage.html @@ -0,0 +1,55 @@ + + + + + Title + + + + + + +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ +
+
+ Log Out +
+
+
+ +
+
+ Sing In +
+
+
+
+ + \ No newline at end of file