-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-profile-update.html
26 lines (26 loc) · 1.2 KB
/
user-profile-update.html
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Редактировать профиль</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<form action="#" method="POST">
<h1>Редактировать профиль</h1>
<label for="profile-pic" class="file-label">Выберите фото профиля</label>
<input type="file" id="profile-pic" name="profile-pic" accept="image/*" class="file-input" onchange="previewImage(event)">
<img id="preview" src="assets/ava.webp" alt="Предварительный просмотр изображения">
<label for="username">Имя пользователя:</label>
<input type="text" id="username" name="username" value="ТекущееИмяПользователя" required>
<a href="change-password.html">
<button type="button">Cменить пароль</button>
</a>
<button type="submit" class="primary">Сохранить изменения</button>
<a href="user-profile.html">
<button type="button">Назад</button>
</a>
<script src="scriptph.js"></script>
</form>
</body>
</html>