Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $user_id = $_GET['user'];
- $db = mysqli_connect("localhost", "root", "", "forum");
- $query = mysqli_query($db, "SELECT * FROM `users` WHERE `id`='{$user_id}'");
- $array = mysqli_fetch_array($query);
- ?>
- <!DOCTYPE html>
- <html id="suka">
- <body style="background: #11191F; display: flex; justify-content: center; align-items: center; height: 100vh; flex-direction: column;">
- <div style="position:fixed; top:5vh; left:5vh; width: 100px; height: 100px; justify-content: flex-start; align-items: flex-start; gap: 10px; display: inline-flex">
- <img style=" position:absolute; top:5%; left:5%; width: 80px; height: 80px; border-radius: 9999px" src="src/media/logo.png" />
- </div>
- <div style="position:fixed; top:9vh; left:13vh; width: 175px; height: 30px; padding: 10px; justify-content: center; align-items: center; display: inline-flex">
- <a href="index.php" class="mont" style="text-decoration: none;">UNO-WTF.TK</a>
- </div>
- <div>
- <a href="home.php" class="mont" style="position:fixed; text-decoration: none; top:9vh; right:20vh; width: 205px; height: 30px; padding: 10px;" >Личный кабинет</a>
- <a href="forum.php" class="mont" style="position:fixed; text-decoration: none; top:9vh; right:5vh; width: 100px; height: 30px; padding: 10px;">Форум</a>
- </div>
- </body>
- <head>
- <title>Профиль: <?php echo $array['user_name']; ?></title>
- <link rel="stylesheet" type="text/css" href="style.css">
- <link rel="stylesheet" href="fonts/fonts.css">
- </head>
- <body>
- <div style="width: 415px; height: 400px; position: fixed; left: 3%; top:30%">
- <div style="width: 415px; height: 400px; left: 0px; top: 0px; position: absolute; background: #141E26; border-radius: 65px"></div>
- <a href="logout.php" style="z-index:1; text-decoration: none; position:absolute; right: 35%; top:80%;">
- <button type="submit" style=" float: right; background: #000AFF; padding: 10px 15px; color: #fff; border-radius: 5px; left: 160vh; border: none;">Подписаться</button>
- </a>
- </div>
- <div style="width: 603px; height: 400px; position: fixed; top:30%; right: 2%;">
- <div class="wow" style="width: 603px; height: 400px; left: 0px; top: 0px; position: absolute; background: #141E26; border-radius: 65px;"></div>
- <div class="wow" style="width: 160.94px; left: 45%; top: 82px; position: absolute; text-align:centr;"><?php echo $array['user_name']; ?></div>
- <img style="width: 122.23px; height: 120px; left: 240.39px; top: 140px; border-radius: 9999px; position: absolute" src="<?php echo $array['avatar']; ?>" />
- <div class="wow" style="width: 265.85px; height: 28px; left: 40%; top: 25px; position: absolute; ">UserName:</div>
- </div>
- <div style="width: 741px; height: 400px; position: fixed; top: 30%; left: 28%;">
- <div class="wow" style="width: 650px; height: 400px; left: 0px; top: 0px; position: absolute; background: #141E26; border-radius: 65px"></div>
- <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 112px; position: absolute; ">Дата регистрации: <?=$array['trn_date']?></div>
- <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 307px; position: absolute; ">id Пользователя: <?=$array['id'] ?></div>
- <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 177px; position: absolute; ">Реакции: <?=$array['reactions']?></div>
- <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 242px; position: absolute; ">Комментарии: <?=$array['messages']?></div>
- <div class="wow" style="width: 504px; height: 35px; left: 84px; top: 53px; position: absolute;">Права: <div style=" position: absolute; top:-30%; left:20%; width: 170px; height: 35px; font-size: 0px; background:url( <?=$array['prefix']?>);"></div> </div>
- </div>
- <script src="./src/visual/dop.js"></script>
- <script src="./src/visual/back.js"></script>
- <script src="./src/visual/app.js"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement