From 5ddf8de3691fde866c5a48b440cffa2990b2014c Mon Sep 17 00:00:00 2001 From: Debulois Date: Thu, 3 Feb 2022 13:02:21 +0100 Subject: Initial commit --- Views/Includes/incl_userInfo_form.php | 76 +++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 Views/Includes/incl_userInfo_form.php (limited to 'Views/Includes/incl_userInfo_form.php') diff --git a/Views/Includes/incl_userInfo_form.php b/Views/Includes/incl_userInfo_form.php new file mode 100644 index 0000000..200a3f5 --- /dev/null +++ b/Views/Includes/incl_userInfo_form.php @@ -0,0 +1,76 @@ +get_user_info_by_id($_SESSION["id"]); +if (!$info) { + $info = [ + ["lastname" => "", + "firstname" => "", + "job" => "", + "degree" => "", + "capability" => "", + "description" => "", + "phoneNumber" => "", + "adress" => "", + "zipCode" => "", + "city" => ""] + ]; +} +echo(' +
+ +
+

'.$text[basename(__FILE__, ".php")]["h2"].'

+
+ + + + + + + + + + + +
+
') +?> \ No newline at end of file -- cgit v1.2.3