TeryokhinAS_PIbd21/profile.html
2023-11-27 17:58:55 +03:00

86 lines
4.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.css">
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/profile_style.css">
<script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.js" ></script>
<title>ProstoFilms</title>
</head>
<header>
<nav class="navbar navbar-expand-md navbar-dark bg-black">
<div class="container"> <a class="navbar-brand" href="index.html">PF</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarContent">
<ul class="navbar-nav mr-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html" >Главная</a>
</li>
<li class="nav-item">
<a class="nav-link" href="films.html" >Фильмы</a>
</li>
<li class="nav-item">
<a class="nav-link" href="serials.html" >Сериалы</a>
</li>
<li class="nav-item">
<a class="nav-link" href="profile.html" >Профиль</a>
</li>
<li class="nav-item">
<a class="nav-link" href="reg.html" >Регистрация</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<body class="bg-image">
<main>
<div class="container">
<div class="row mt-5 d-flex justify-content-center">
<div class="user-profile p-4">
<img src = "profiles/user.jpg">
<h3 class="mt-2">Терёхин Андрей</h3>
<h5>Подписка: Активна</h5>
</div>
<div class="row mt-3">
<h4 class="border-bottom text-light">Информация</h4>
<h5 class="mt-2 mb-1 text-light">Почта</h5>
<h5 class="text-light">mail@gmail.ru</h5>
<h5 class="mt-2 mb-1 text-light">Номер тел. для верификация аккаунта</h5>
<h5 class="text-light">88005553535</h5>
</div>
<div class="row mt-3">
<h4 class="border-bottom text-light">Фильмы и Сериалы</h4>
<div class="row">
<div class="col-12">
<h5 class="mt-2 text-light">Любимое</h5>
<img class="mx-3" src="profiles/favourite/deep space.png">
<img class="mx-3" src="profiles/favourite/drive.png">
</div>
<div class="col-12">
<a class="nav-link" href="wishlist.html"><h5 class="mt-2 text-light">Хочу посмотреть</h5></a>
<img class="mx-3" src="profiles/wishlist/broken pixels.png">
<img class="mx-3" src="profiles/wishlist/trueman show.png">
</div>
</div>>
</div>
</div>
</main>
</body>
<div class="footer">
<div class="container-fluid fixed-bottom bg-black">
<footer class="py-3">
<div class="col-md-4">
<span class=" ms-4 mb-3 mb-md-0 text-muted">© 2023 ProstoFilms, Inc</span>
</div>
</footer>
</div>
</div>
</html>