-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-edit.html
More file actions
63 lines (57 loc) · 1.83 KB
/
Copy pathprofile-edit.html
File metadata and controls
63 lines (57 loc) · 1.83 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<link rel="stylesheet" href="./global.css" />
<link rel="stylesheet" href="./profile-edit.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Questrial:wght@400&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap"
/>
</head>
<body>
<div class="profile-edit">
<img
class="back-button-icon4"
alt=""
src="./public/back-button.svg"
id="backButtonIcon"
/>
<div class="choose-your-photo">Choose your photo profile</div>
<div class="username-can-be">Username can be changed at any time</div>
<div class="button2" id="buttonContainer">
<img class="button-child" alt="" src="./public/rectangle2.svg" />
<div class="next">Next</div>
</div>
<div class="rectangle-container">
<div class="group-child7"></div>
<img
class="group-child8"
alt=""
src="./public/rectangle-3463275@2x.png"
/>
<div class="password"></div>
</div>
<img class="profile-edit-child" alt="" src="./public/group-33630.svg" />
</div>
<script>
var backButtonIcon = document.getElementById("backButtonIcon");
if (backButtonIcon) {
backButtonIcon.addEventListener("click", function (e) {
window.location.href = "./profile-page.html";
});
}
var buttonContainer = document.getElementById("buttonContainer");
if (buttonContainer) {
buttonContainer.addEventListener("click", function (e) {
window.location.href = "./home-menu.html";
});
}
</script>
</body>
</html>