From b1a7b646a63d421e44b9448d763317f4192f006c Mon Sep 17 00:00:00 2001 From: Samuel Date: Fri, 30 Aug 2024 15:43:25 +0200 Subject: [PATCH] klar med moment 2 --- www/public/Moment-2/FeetBook/addUser.php | 48 +++++++++++++++++++ www/public/Moment-2/FeetBook/cleanData.php | 1 + www/public/Moment-2/FeetBook/start.php | 40 ++++++++++++++-- .../FeetBook/{Person.php => user.php} | 27 +++-------- www/public/Moment-2/index.php | 1 + www/user.dat | 0 6 files changed, 94 insertions(+), 23 deletions(-) create mode 100644 www/public/Moment-2/FeetBook/addUser.php rename www/public/Moment-2/FeetBook/{Person.php => user.php} (54%) create mode 100644 www/user.dat diff --git a/www/public/Moment-2/FeetBook/addUser.php b/www/public/Moment-2/FeetBook/addUser.php new file mode 100644 index 0000000..1f497f1 --- /dev/null +++ b/www/public/Moment-2/FeetBook/addUser.php @@ -0,0 +1,48 @@ + + + + + Filhantering Läs + + +getAnvändarnamn() == $användarnamn && $user->getLösenord() == $lösenord) { + echo('Välkommen ' . $user->getFörnamn() . " " . $user->getEfternamn()); + break; + } + } + } +?> + + \ No newline at end of file diff --git a/www/public/Moment-2/FeetBook/cleanData.php b/www/public/Moment-2/FeetBook/cleanData.php index 8a8ccf3..d80117c 100644 --- a/www/public/Moment-2/FeetBook/cleanData.php +++ b/www/public/Moment-2/FeetBook/cleanData.php @@ -15,6 +15,7 @@ } $data = strip_tags($data); + $data = htmlspecialchars($data); $data = trim($data); $data = stripslashes($data); return $data; diff --git a/www/public/Moment-2/FeetBook/start.php b/www/public/Moment-2/FeetBook/start.php index 65ae8a7..552269e 100644 --- a/www/public/Moment-2/FeetBook/start.php +++ b/www/public/Moment-2/FeetBook/start.php @@ -10,6 +10,7 @@
Sign up + @@ -18,12 +19,45 @@ - +
-
+ + +
+
+ Sign in + + + + + + +
+
+ \ No newline at end of file diff --git a/www/public/Moment-2/FeetBook/Person.php b/www/public/Moment-2/FeetBook/user.php similarity index 54% rename from www/public/Moment-2/FeetBook/Person.php rename to www/public/Moment-2/FeetBook/user.php index 8a02069..d72afa1 100644 --- a/www/public/Moment-2/FeetBook/Person.php +++ b/www/public/Moment-2/FeetBook/user.php @@ -1,22 +1,11 @@ - - - - - - Document - - - förnamn = $förnamn; $this->efternamn = $efternamn; @@ -24,26 +13,24 @@ class Person { $this->lösenord = $lösenord; } - public function getförnamn() { + public function getFörnamn() { return $this->förnamn; } - public function getefternamn() { + public function getEfternamn() { return $this->efternamn; } - public function getanvändarnamn() { + public function getAnvändarnamn() { return $this->användarnamn; } - public function getlösenord() { + public function getLösenord() { return $this->lösenord; } - public function setlösenord($lösenord) { + public function setLösenord($lösenord) { $this->lösenord = $lösenord; } } ?> - - \ No newline at end of file diff --git a/www/public/Moment-2/index.php b/www/public/Moment-2/index.php index 78fb63f..efbbb8d 100644 --- a/www/public/Moment-2/index.php +++ b/www/public/Moment-2/index.php @@ -10,6 +10,7 @@ Upg2 Upg3 Upg4 + FeetBook diff --git a/www/user.dat b/www/user.dat new file mode 100644 index 0000000..e69de29