diff --git a/.idea/Webshop.iml b/.idea/Webshop.iml index 533a2cb..8b332b7 100644 --- a/.idea/Webshop.iml +++ b/.idea/Webshop.iml @@ -6,5 +6,6 @@ + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml index e1cfb03..9687cac 100644 --- a/.idea/inspectionProfiles/Project_Default.xml +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -6,11 +6,28 @@ + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml index 9da3653..2f279b3 100644 --- a/.idea/jsLibraryMappings.xml +++ b/.idea/jsLibraryMappings.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/public/login/index.html b/public/login/index.html index f87b425..6494ab5 100644 --- a/public/login/index.html +++ b/public/login/index.html @@ -1,24 +1,46 @@ - + + + + + Login + + -
- -
- -
- +
+
+

Login

+
+ + +
+
+ + +
+ +
+ + Passwort vergessen? +
+ + + + + +
diff --git a/static/Styles/login/style.css b/static/Styles/login/style.css new file mode 100644 index 0000000..de143f8 --- /dev/null +++ b/static/Styles/login/style.css @@ -0,0 +1,102 @@ +{ + margin: 0 +; + padding: 0 +; + box-sizing: border-box +; + font-family: "Poppins", sans-serif +; +} + +body { + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background: url("../../images/LoginBackround.jpg"); +} + +.wrapper { + width: 420px; + background: lightgrey; + color: #111111; + border-radius: 15px; + padding: 45px 25px; +} + +.wrapper h1 { + font-size: 36px; + text-align: center; + margin-bottom: 40px; +} + +.wrapper .input-box { + position: relative; + width: 89%; + height: 50px; + margin: 20px 1px; +} + +.input-box input { + width: 100%; + height: 100%; + outline: none; + border: 2px solid rgba(255, 255, 255, .2); + border-radius: 40px; + font-size: 16px; + padding: 0 20px; +} + +.wrapper .input-box input::placeholder { + color: #111111; +} + +.input-box i { + position: absolute; + left: 390px; + top: 50%; + transform: translateY(-50%); + font-size: 20px; +} + +.wrapper .remember-forgot { + display: flex; + justify-content: space-between; + font-size: 16.5px; + margin: 10px 20px; +} + +.remember-forgot a { + color: #111111; + text-decoration: none; +} + +.remember-forgot a:hover { + text-decoration: underline; +} + +.wrapper .register-link { + font-size: 14px; + text-align: center; +} + +.register-link a { + color: #111111; + text-decoration: none; + margin: -1px 6px; +} + +.register-link a:hover { + text-decoration: underline; +} + +.wrapper .btn { + width: 100%; + height: 50px; + border: none; + outline: none; + margin-top: 40px; + border-radius: 40px; + cursor: pointer; +} diff --git a/static/images/LoginBackround.jpg b/static/images/LoginBackround.jpg new file mode 100644 index 0000000..087be46 Binary files /dev/null and b/static/images/LoginBackround.jpg differ