35249-vm/profile.php
Flatlogic Bot 3db54a0124 3.0
2025-10-26 12:42:58 +00:00

55 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
ini_set('display_errors', '1');
error_reporting(E_ALL);
$user = [
'is_logged_in' => true,
'nickname' => 'TestUser',
];
?>
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Профиль</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="index.php">P2P Платформа</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="profile.php"><i class="bi bi-person-circle"></i> <?= htmlspecialchars($user['nickname']) ?></a>
</li>
<li class="nav-item">
<a class="nav-link" href="logout.php"><i class="bi bi-box-arrow-right"></i> Выйти</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container mt-4">
<h1 class="mb-4">Профиль</h1>
<div class="alert alert-info">Эта страница находится в разработке. Здесь будет информация о вашем профиле.</div>
<a href="index.php" class="btn btn-secondary"><i class="bi bi-arrow-left"></i> Назад на главную</a>
</main>
<footer class="container text-center text-muted mt-5 py-3 border-top">
<p>&copy; P2P Platform <?= date('Y') ?></p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>