From 7a542b6236b25233288391a239007315f2346084 Mon Sep 17 00:00:00 2001 From: Ali Date: Sat, 21 Feb 2026 19:16:16 +0900 Subject: [PATCH] dburl geaendert --- public/index.html | 97 +++++------------------------ public/login.html | 26 ++++++++ public/{css/styles.css => login.js} | 0 public/styles.css | 65 +++++++++++++++++++ 4 files changed, 106 insertions(+), 82 deletions(-) create mode 100644 public/login.html rename public/{css/styles.css => login.js} (100%) create mode 100644 public/styles.css diff --git a/public/index.html b/public/index.html index 23034da..9088606 100644 --- a/public/index.html +++ b/public/index.html @@ -1,90 +1,23 @@ - + + - Testseite + + Schics - Das Tool + -

Login Page

-
- - - - -
-
-

Don't have an account?

- +
+

Meine Schic-App

+ +
- - - - - \ No newline at end of file diff --git a/public/login.html b/public/login.html new file mode 100644 index 0000000..1695c55 --- /dev/null +++ b/public/login.html @@ -0,0 +1,26 @@ + + + + + Login - Schic-App + + + + +
+

Login

+ +
+ + + +
+ +

+ + Zurück zur Startseite +
+ + + + \ No newline at end of file diff --git a/public/css/styles.css b/public/login.js similarity index 100% rename from public/css/styles.css rename to public/login.js diff --git a/public/styles.css b/public/styles.css new file mode 100644 index 0000000..d1db161 --- /dev/null +++ b/public/styles.css @@ -0,0 +1,65 @@ +body { + margin: 0; + font-family: Arial, sans-serif; + background-color: #f4f6f8; + color: #333; +} + +header { + background-color: #1e293b; + color: white; + padding: 1rem 2rem; + display: flex; + justify-content: space-between; + align-items: center; +} + +nav a { + color: white; + text-decoration: none; + font-weight: bold; +} + +main { + padding: 3rem; + text-align: center; +} + +.container { + max-width: 400px; + margin: 100px auto; + padding: 2rem; + background: white; + border-radius: 8px; + box-shadow: 0 10px 25px rgba(0,0,0,0.1); + text-align: center; +} + +input { + width: 100%; + padding: 0.8rem; + margin: 0.5rem 0; + border-radius: 4px; + border: 1px solid #ccc; +} + +button { + width: 100%; + padding: 0.8rem; + margin-top: 1rem; + border: none; + background-color: #2563eb; + color: white; + border-radius: 4px; + cursor: pointer; + font-weight: bold; +} + +button:hover { + background-color: #1d4ed8; +} + +.error { + color: red; + margin-top: 1rem; +} \ No newline at end of file