Advertisement
Nautiluss

home

May 14th, 2024
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.67 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. if (isset($_SESSION['id']) && isset($_SESSION['user_name'])) {
  5.  
  6.  ?>
  7. <!DOCTYPE html>
  8. <html id="suka">
  9.  
  10. <body style="background: #11191F; display: flex; justify-content: center; align-items: center; height: 100vh; flex-direction: column;">
  11.  
  12. <body>
  13. <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">
  14.     <img style=" position:absolute; top:5%; left:5%; width: 80px; height: 80px; border-radius: 9999px" src="src/media/logo.png" />
  15.   </div>
  16.   <div style="position:fixed; top:9vh; left:13vh; width: 175px; height: 30px; padding: 10px; justify-content: center; align-items: center; display: inline-flex">
  17.     <a href="index.php" class="mont" style="text-decoration: none;">UNO-WTF.TK</a>
  18.   </div>
  19.   <div>
  20.   <a href="home.php" class="mont" style="position:fixed; text-decoration: none; top:9vh; right:20vh;  width: 205px; height: 30px; padding: 10px;" >Личный кабинет</a>
  21.   <a href="forum.php" class="mont" style="position:fixed; text-decoration: none; top:9vh; right:5vh;  width: 100px; height: 30px; padding: 10px;">Форум</a>
  22.   </div>
  23.  
  24. <head>
  25.     <title>Профиль: <?php echo $_SESSION['user_name']; ?></title>
  26.      <link rel="stylesheet" type="text/css" href="style.css">
  27.     <link rel="stylesheet" href="fonts/fonts.css">
  28. </head>
  29.  
  30.      <div style="width: 415px; height: 400px; position: fixed; left: 3%; top:30%">
  31.      <div style="width: 415px; height: 400px; left: 0px; top: 0px; position: absolute; background: #141E26; border-radius: 65px"></div>
  32.      <a href="settings.php" class="mont" style="filter: drop-shadow(0 0 0px #ffffff); text-decoration: none; width: 253px; height: 40px; left: 81px; top: 177px; position: absolute; ">⚙    Настройки</a>
  33.      <a href="safety.php" class="mont" style="filter: drop-shadow(0 0 0px #ffffff); text-decoration: none; width: 253px; height: 40px; left: 81px; top: 269px; position: absolute; ">🔐    Безопасность</a>
  34.      <a href="avatar.php" class="mont" style="filter: drop-shadow(0 0 0px #ffffff); text-decoration: none; width: 253px; height: 40px; left: 81px; top: 85px; position: absolute; ">🖼    Аватар </a>
  35.      </div>
  36.  
  37.  
  38.  
  39.      <div style="width: 603px; height: 400px; position: fixed; top:30%; right: 2%;">
  40.       <div class="wow" style="width: 603px; height: 400px; left: 0px; top: 0px; position: absolute; background: #141E26; border-radius: 65px;"></div>
  41.       <a href="logout.php" style="z-index:1; text-decoration: none; position:absolute; right:36%; top:80%;">
  42.       <button  type="submit" style="    float: right; background: #000AFF; padding: 10px 15px; color: #fff; border-radius: 5px; left: 160vh; border: none;">Выйти из аккаунта</button>
  43.       </a>
  44.       <div class="wow" style="width: 160.94px; left: 45%; top: 82px; position: absolute; text-align:centr;"><?php echo $_SESSION['user_name']; ?></div>
  45.       <img style="width: 122.23px; height: 120px; left: 240.39px; top: 140px; border-radius: 9999px; position: absolute" src="<?php echo $_SESSION['avatar']; ?>" />
  46.       <div class="wow" style="width: 265.85px; height: 28px; left: 30%; top: 25px; position: absolute; ">Добро пожаловать,</div>
  47.     </div>
  48.  
  49.  
  50.  
  51.      <div style="width: 741px; height: 400px; position: fixed; top: 30%; left: 28%;">
  52.       <div class="wow" style="width: 650px; height: 400px; left: 0px; top: 0px; position: absolute; background: #141E26; border-radius: 65px"></div>
  53.       <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 112px; position: absolute; ">Дата регистрации: <?php echo $_SESSION['trn_date']; ?></div>
  54.       <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 307px; position: absolute; ">Твой id: <?php echo $_SESSION['id']; ?></div>
  55.       <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 177px; position: absolute; ">Реакции:  <?php echo $_SESSION['reactions']; ?></div>
  56.       <div class="wow" style="width: 622px; height: 41px; left: 84px; top: 242px; position: absolute; ">Комментарии: <?php echo $_SESSION['messages']; ?></div>
  57.       <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(<?php echo $_SESSION['prefix']; ?>);"></div> </div>
  58.     </div>
  59. </body>
  60.    <script src="./src/visual/dop.js"></script>
  61.      <script src="./src/visual/back.js"></script>
  62.      <script src="./src/visual/app.js"></script>
  63. </body>
  64. </html>
  65.  
  66. <?php
  67. }else{
  68.      header("Location: index.php");
  69.      exit();
  70. }
  71.  ?>
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement