2024-08-05 10:51:42 +00:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
2024-08-06 09:33:20 +00:00
|
|
|
|
<link rel="stylesheet" href="/assets/css/profile.css">
|
2024-08-05 10:51:42 +00:00
|
|
|
|
<title>Профиль</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="main-container">
|
|
|
|
|
<div class="profile-header">
|
|
|
|
|
<h1 style="color: white; text-align: center;">Профиль пользователя</h1>
|
2024-08-10 03:09:51 +00:00
|
|
|
|
<button class="return" type="button"></button>
|
2024-08-05 10:51:42 +00:00
|
|
|
|
</div>
|
|
|
|
|
<form>
|
|
|
|
|
<div class="columns">
|
|
|
|
|
<div class="column">
|
2024-08-06 09:33:20 +00:00
|
|
|
|
<img class="avatar" src="/assets/img/empty_avatar.png" id="avatar" height="200" width="200"><br>
|
2024-08-05 10:51:42 +00:00
|
|
|
|
<input type="file" id="fileInput" style="display:none">
|
|
|
|
|
<button class="add" type="button" onclick="document.getElementById('fileInput').click();"></button><br>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="column">
|
|
|
|
|
<input type="text" name="username" placeholder = "Имя пользователя" value="Some Name" id="username"><br>
|
|
|
|
|
<input type="text" name="login" placeholder="Логин" value="some_login123" id="login" readonly><br>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<h3 style="color:#007bb5;">О себе</h3>
|
|
|
|
|
<div class="additional-info">
|
|
|
|
|
<textarea name="bio" placeholder="Напишите о себе..." id="bio"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<button class="save" type="submit">Сохранить изменения</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-08-06 09:33:20 +00:00
|
|
|
|
<script src="/assets/js/list-rooms.js"> </script>
|
2024-08-05 13:12:35 +00:00
|
|
|
|
|
2024-08-05 10:51:42 +00:00
|
|
|
|
</body>
|
2024-08-06 09:00:46 +00:00
|
|
|
|
</html>
|