„threadr/profile/edit.php“ ändern

master
Jakob 2020-03-08 16:28:03 +01:00
parent 5023fa34fd
commit 9e80ae43ed
1 changed files with 10 additions and 41 deletions

View File

@ -1,46 +1,15 @@
<?php <?php
session_start();
%SET_LOGIN_VARIABLE%
%PLEAZE_NO_CACHE%
%NO_CHEAP_SESSION_STEALING%
%REQUIRE_LOGIN% %REQUIRE_LOGIN%
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
$statement = $pdo->prepare('SELECT name FROM users WHERE id = :user_id;'); // to be replaced with optional user name off the user data table
$result = $statement->execute(array('user_id' => $_SESSION['user_id']));
$dbentry = $statement->fetch();
$username = $dbentry['name'];
$navbar = "profile";
?> ?>
<html> <section>
<head> <center><h1><?php echo " $username "; ?> </h1></center>
<title>ThreadR - Edit Profile</title> <form action="%CONTENT_DIR%/profile/" method="post">
%STYLESHEET% <input type="text" name="name" maxlength="20" placeholder="First name"/>
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" /> <input type="text" name="email" placeholder="E-mail"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <input type="text" name="biography" maxlength="2000" placeholder="Describe yourself"/>
</head> <input type="text" name="website" maxlength="127" placeholder="Website">
<button>Save Profile</button>
<body> </form>
%NAVBAR% </section>
<div class="container">
<div class="item-1">
<center><h1>ThreadR</h1></center>
</div>
<div class="item-2">
<section>
<center><h1><?php echo " $username "; ?> </h1></center>
<form action="%CONTENT_DIR%/profile/" method="post">
<input type="text" name="name" maxlength="20" placeholder="First name"/>
<input type="text" name="email" placeholder="E-mail"/>
<input type="text" name="biography" maxlength="2000" placeholder="Describe yourself"/>
<input type="text" name="website" maxlength="127" placeholder="Website">
<button>Save Profile</button>
</form>
</section>
</div>
</div>
</body>
</html>