-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
74 lines (72 loc) · 3.97 KB
/
profile.html
File metadata and controls
74 lines (72 loc) · 3.97 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Профиль</title>
<link rel="icon" href="assets/icon-music.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="css/profile.css">
<link rel="stylesheet" href="css/header.css">
<script src="js/data.js" defer></script>
</head>
<body>
<div class="container">
<header class="p-3 mb-3 border-bottom border-gray">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start me-lg-4">
<a href="index.html" class="logo-text d-flex align-items-center mb-2 mb-lg-2 text-dark text-decoration-none me-3">
Музыка
</a>
<ul class="nav col-12 col-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="books.html" class="nav-link px-2">Книги</a></li>
<li><a href="children.html" class="nav-link px-2">Детям</a></li>
<li><a href="games.html" class="nav-link px-2">Игры</a></li>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3 me-lg-auto ms-4" role="search">
<input type="search" class="form-control" placeholder="Поиск" aria-label="Search">
</form>
<span class="plus-badge badge rounded-pill bg-secondary me-2">
ПЛЮС
</span>
<div class="dropdown text-end">
<a href="#" class="d-block link-dark text-decoration-none badge rounded-pill bg-secondary me-2" data-bs-toggle="dropdown" aria-expanded="false">
<img src="assets/icon-profile.png" alt="icon-profile" width="43" height="43" class="rounded-circle">
</a>
<ul class="dropdown-menu text-small">
<li><a class="dropdown-item" href="profile.html">Профиль</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="signin.html">Выйти</a></li>
</ul>
</div>
</div>
</div>
</header>
</div>
<main>
<div class="card" style="width: 25rem;">
<img src="assets/avatar.png" class="card-img-top" alt="profile">
<div class="card-body">
<h5 class="card-title text-center">Профиль</h5>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">Имя: Имя</li>
<li class="list-group-item">Фамилия: Фамилия</li>
<li class="list-group-item">Дата рождения: xx.xx.xxxx</XX></li>
<li class="list-group-item">Предпочтения: классическая музыка</li>
<li class="list-group-item">Номер телефона: +7xxxxxxxxxx</li>
<li class="list-group-item">Почта: xxxxxx@yandex.ru</li>
</ul>
<div class="card-body text-center mt-3">
<a href="signin.html" class="btn btn-primary">Выход</a>
</div>
</div>
</div>
</main>
<footer class="py-3 my-4">
<p class="text-center text-muted">© 2023 Company, Inc</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>