Advertisement
Nautiluss

avatar

May 14th, 2024
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.38 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. <body style="background: #11191F; display: flex; justify-content: center; align-items: center; height: 100vh; flex-direction: column;">
  10. <body>
  11. <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">
  12.     <img style=" position:absolute; top:5%; left:5%; width: 80px; height: 80px; border-radius: 9999px" src="src/media/logo.png" />
  13.   </div>
  14.   <div style="position:fixed; top:9vh; left:13vh; width: 175px; height: 30px; padding: 10px; justify-content: center; align-items: center; display: inline-flex">
  15.     <a href="index.php" class="mont" style="text-decoration: none;">UNO-WTF.TK</a>
  16.   </div>
  17.   <div>
  18.   <a href="home.php" class="mont" style="position:fixed; text-decoration: none; top:9vh; right:20vh;  width: 205px; height: 30px; padding: 10px;" >Личный кабинет</a>
  19.   <a href="forum.php" class="mont" style="position:fixed; text-decoration: none; top:9vh; right:5vh;  width: 100px; height: 30px; padding: 10px;">Форум</a>
  20.   </div>
  21.   </body>
  22.  
  23. <head>
  24.     <title>Профиль: <?php echo $_SESSION['user_name']; ?></title>
  25.      <link rel="stylesheet" type="text/css" href="style.css">
  26.     <link rel="stylesheet" href="fonts/fonts.css">
  27. </head>
  28. <body>
  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.  
  53.      <form method="post" action="avatar_load.php" enctype="multipart/form-data" style="border:none; background:#141E26 ; z-index:4; position:absolute; top:30%; left:10%;">
  54.     <label for="avatar">Загрузить аватарку</label>
  55.     <input type="file" id="avatar" class="wow" style="background: #141E26;" name="avatar"></br>
  56.     <input type="submit" class="wow" style="background: #141E26;" value="Загрузить">
  57.     </form>
  58.      <div style="z-index: 1; width: 650px; height: 400px; left: 0px; top: 0px; position: absolute; background: #141E26; border-radius: 65px">
  59.      <?php if (isset($_GET['error'])) { ?>
  60.             <p class="error" style="position:fixed; right:5%; top:20%; width:500px; hight:100px;"><?php echo $_GET['error']; ?></p>
  61.         <?php } ?>  
  62.     </div>
  63.      
  64.     </div>
  65.  
  66.      <script src="./src/visual/dop.js"></script>
  67.      <script src="./src/visual/back.js"></script>
  68.      <script src="./src/visual/app.js"></script>
  69. </body>
  70. </html>
  71.  
  72. <?php
  73. }else{
  74.      header("Location: index.php");
  75.      exit();
  76. }
  77.  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement