Hendrik testing #64

Merged
11342374 merged 35 commits from hendrik-testing into master 2017-01-18 16:08:50 +01:00
6 changed files with 99 additions and 31 deletions
Showing only changes of commit 11f2297d5a - Show all commits

View File

@@ -1,7 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<?php include("../views/head.php"); ?>
<?php
include("../views/head.php");
$_SESSION["userID"] = 2;
include_once("../queries/connect.php");
include_once("../queries/settings.php");
?>
<style>
@import url("styles/settings.css");
</style>
@@ -12,13 +17,20 @@
* This view adds the main layout over the screen.
* Header and menu.
*/
include("../views/main.php");
if ($_SERVER["REQUEST_METHOD"] == "POST") {
updateSettings();
}?>
<?php
/* Add your view files here. */
include("../views/settings-view.php");
/* This adds the footer. */
include("../views/footer.php");
?>
</body>
</html>

View File

@@ -21,6 +21,10 @@
text-align: right;
}
.settings-password label, .settings-email label {
text-align: left;
}
/* All the fields for typing things. */
.settings input[type="password"],
.settings input[type="text"],

View File

@@ -5,7 +5,7 @@ if ($dbconf === FALSE) {
die("Error parsing XML file");
}
else {
$db = new PDO("mysql:host=$dbconf->mysql_host;dbname=$dbconf->mysql_database;charset=utf8",
$GLOBALS["db"] = new PDO("mysql:host=$dbconf->mysql_host;dbname=$dbconf->mysql_database;charset=utf8",
"$dbconf->mysql_username", "$dbconf->mysql_password")
or die('Error connecting to mysql server');
}

View File

@@ -0,0 +1,46 @@
<?php
function getSettings() {
$stmt = $GLOBALS["db"]->prepare("
SELECT
`fname`,
`lname`,
`email`,
`location`,
`birthdate`,
`bio`,
`profilepicture`
FROM
`user`
WHERE
`userID` = :userID
");
$stmt->bindParam(":userID", $_SESSION["userID"]);
$stmt->execute();
return $stmt->fetch();
}
function updateSettings() {
$stmt = $GLOBALS["db"]->prepare("
UPDATE
`user`
SET
`fname` = :fname,
`lname` = :lname,
`location` = :location,
`birthdate` = :bday,
`bio` = :bio
WHERE
`userID` = :userID
");
$stmt->bindParam(":fname", $_POST["fname"]);
$stmt->bindParam(":lname", $_POST["lname"]);
$stmt->bindParam(":location", $_POST["location"]);
$stmt->bindParam(":bday", $_POST["bday"]);
$stmt->bindParam(":bio", $_POST["bio"]);
$stmt->bindParam(":userID", $_SESSION["userID"]);
$stmt->execute();
}

View File

@@ -15,6 +15,6 @@
</style>
<?php
include_once("../connect.php");
include_once("../queries/connect.php");
?>

View File

@@ -1,39 +1,29 @@
<?php
$settings = getSettings();
?>
<div class="content">
<div class="settings">
<form class="settings-profile platform">
<form class="settings-profile platform" method="post">
<h5>Profiel Instellingen</h5>
<ul>
<li>
<label for="first-name">Voornaam</label>
<label for="fname">Voornaam</label>
<input type="text"
name="first-name"
id="first-name"
name="fname"
id="fname"
placeholder="Voornaam"
title="Voornaam"
value="<?= $settings["fname"]?>"
>
</li>
<li>
<label for="last-name">Achternaam</label>
<label for="lname">Achternaam</label>
<input type="text"
name="last-name"
id="last-name"
name="lname"
id="lname"
placeholder="Achternaam"
>
</li>
<li>
<label for="place">Woonplaats</label>
<input type="text"
name="place"
id="place"
placeholder="Woonplaats"
>
</li>
<li>
<label for="bday">Geboortedatum</label>
<input type="date"
name="bday"
id="bday"
placeholder="01/01/1900"
value="<?= $settings["lname"]?>"
>
</li>
<li>
@@ -42,6 +32,16 @@
name="location"
id="location"
placeholder="Locatie"
value="<?= $settings["location"]?>"
>
</li>
<li>
<label for="bday">Geboortedatum</label>
<input type="date"
name="bday"
id="bday"
placeholder="01/01/1900"
value="<?= $settings["birthdate"]?>"
>
</li>
<li>
@@ -50,7 +50,7 @@
rows="5"
title="bio"
id="bio"
></textarea>
><?= $settings["bio"]?></textarea>
</li>
<li>
<label></label>
@@ -60,12 +60,12 @@
</li>
</ul>
</form>
<form class="settings-profilepictue platform">
<form class="settings-profilepictue platform" method="post">
<h5>Verander profielfoto</h5>
<ul>
<li>
<label>Huidige profielfoto</label>
<img src="../public/img/top-logo.png"
<img src="<?= $settings["profilepicture"] ?>"
class="profile-picture"
>
</li>
@@ -108,7 +108,6 @@
>
</li>
<li>
<label></label>
<input type="submit"
value="Verander wachtwoord"
>
@@ -119,6 +118,14 @@
<form class="settings-email platform item-box" method="post">
<h5>Verander Email</h5>
<ul>
<li>
<label for="email-old">Huidig Email </label>
<input type="email"
id="email-old"
value="<?= $settings["email"]?>"
disabled
>
</li>
<li>
<label for="email">Nieuw Email</label>
<input type="email"
@@ -136,7 +143,6 @@
>
</li>
<li>
<label></label>
<input type="submit"
value="Verander Email"
>