diff --git a/Projekt_Ordner/css/feedback.css b/Projekt_Ordner/css/feedback.css new file mode 100644 index 0000000..32ad1e5 --- /dev/null +++ b/Projekt_Ordner/css/feedback.css @@ -0,0 +1,42 @@ +body { + margin: 0; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background-color: #233142; + font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", Arial; +} + +.container{ + border: 1px solid black; + background-color:#364A62 ; + height: 700px; + width: 800px; + padding: 20px; + margin: 10px; + text-align: center; +} +.container h1{ + color:#00FF6A; + font-family: Roboto; + font-size: 70px; +} + +.container p{ + color:#ffffff; + font-family: Roboto; + font-size: 40px; + +} + +.container a{ + color:#726FC5; + font-family: Roboto; + font-size: 40px; + text-decoration: none; + padding: 10px; + margin: 20px; + font-weight: bold; + +} \ No newline at end of file diff --git a/Projekt_Ordner/html/Homepage.html b/Projekt_Ordner/html/Homepage.html index c3c73a4..4759432 100644 --- a/Projekt_Ordner/html/Homepage.html +++ b/Projekt_Ordner/html/Homepage.html @@ -7,7 +7,7 @@ - + Data Structure Visualizer @@ -27,7 +27,7 @@

Learn how stacks, queues and other data structures work through interactive animations.

- Data structure overview + Data structure overview
diff --git a/Projekt_Ordner/html/aboutMe.html b/Projekt_Ordner/html/aboutMe.html index ebfb7da..30c5da4 100644 --- a/Projekt_Ordner/html/aboutMe.html +++ b/Projekt_Ordner/html/aboutMe.html @@ -3,7 +3,7 @@ - + About me @@ -22,7 +22,7 @@
- Obai Albek + Obai Albek

Hi, I'm Obai Albek, a computer science student with a strong passion for data structures, @@ -37,7 +37,7 @@

MESSAGE ME

-
+ diff --git a/Projekt_Ordner/html/feedback.html b/Projekt_Ordner/html/feedback.html new file mode 100644 index 0000000..eb882d2 --- /dev/null +++ b/Projekt_Ordner/html/feedback.html @@ -0,0 +1,18 @@ + + + + + + + Feedback + + +
+

Thank You

+

Your feedback is highly appreciated

+

Go back:

+ HOMEPAGE +
+ + + \ No newline at end of file diff --git a/Projekt_Ordner/php/contactMe.php b/Projekt_Ordner/php/contactMe.php index 5706cf1..0ca4dda 100644 --- a/Projekt_Ordner/php/contactMe.php +++ b/Projekt_Ordner/php/contactMe.php @@ -34,9 +34,9 @@ if (isset($_POST["send"])) { $mail->Subject = $subject; $mail->Body = $message; $mail->send(); - echo "Nachricht erfolgreich gesendet!"; + header("Location: ../html/feedback.html"); } catch (Exception $e) { - echo "Fehler beim Senden: {$mail->ErrorInfo}"; + } } ?>