-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.php
94 lines (82 loc) · 2.74 KB
/
user.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
session_start();
if (!isset($_SESSION["user"])) {
header("Location: login.php");
exit();
}
require_once "database.php";
$stmt = $conn->prepare("SELECT * FROM users WHERE id = ?");
$stmt->bind_param("s", $_SESSION["user"]);
$stmt->execute();
$result = $stmt->get_result();
$user = $result->fetch_assoc();
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Профиль | BOSEOK - Серьги, Кольца и другие Ювелирные изделия</title>
<link rel="shortcut icon" href="./assets/favicon.png" type="image/x-icon" />
<!-- css -->
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/user.css" />
<!-- js -->
</head>
<body>
<section class="ad">
<p class="small bold">Бесплатная доставка и 30-дневный возврат</p>
</section>
<?php require_once ('./header.php'); ?>
<main>
<section class="user" id="user">
<p class="h2 bold">Профиль</p>
<section class="user-info" id="user-info">
<p class="input" id="name">
<?php echo $user["name"]; ?>
</p>
<p class="input" id="surname">
<?php echo $user["surname"]; ?>
</p>
<p class="input" id="parent">
<?php echo $user["parent_name"]; ?>
</p>
<p class="input" id="email">
<?php echo $user["email"]; ?>
</p>
<?php
if (!empty($user["address"]) && $user["address"] !== '-') {
echo "<p class='input' id='email'>" . $user["address"] . "</p>";
}
?>
<label for="send-ads">
<input type="checkbox" name="send-ads" id="send-ads" checked />
Присылайте мне на электронную почту новости и предложения BOSEOK.
</label>
<a href="./logout.php" class="btn-primary">
Выйти
</a>
</section>
</section>
<section class="where">
<div class="image">
<img src="./assets/index/where/1.png" alt="preview" />
</div>
<p class="h2 bold">Мы здесь для вас</p>
<p>
Сделайте свой наряд более индивидуальным, чем когда-либо. Идеальный
подарок себе или близкому человеку.
</p>
<a href="https://yandex.ru/maps/-/CDFvFIkT" target="_blank" class="btn-secondary">Посмотреть на карте</a>
</section>
</main>
<?php require_once ('./footer.php'); ?>
<section class="cr">
<p class="small">© BOSEOK, 2024</p>
<a href="https://icons8.com" class="small">icons by icons8</a>
<a href="https://github.com/sohee-commits" class="small">
developer: sohee-commits
</a>
</section>
</body>
</html>