Skip to content

Commit

Permalink
added home button in edit profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditijainnn committed Oct 15, 2024
1 parent cc275a1 commit 0ba2ef8
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions assets/html/profileedit.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,25 @@
font-size: 24px;
}

.home-link {
display: flex;
align-items: center;
color: white;
font-size: 18px;
text-decoration: none;
position: absolute;
margin-left: 20px;
}

.home-link i {
margin-right: 8px;
font-size: 24px;
}

.home-link:hover {
color: #ddd;
}

.avatar-selection {
text-align: center;
margin-bottom: 20px;
Expand Down Expand Up @@ -238,10 +257,18 @@
</style>
</head>



<body>
<div class="container">
<div class="edit-profile">
<!-- Home Link -->
<a href="../../index.html" class="home-link">
<i class='bx bx-home'></i> Home
</a>

<h3>Edit Profile</h3>
</div>
<div class="avatar-selection">
<h4>Select Avatar</h4>
<div class="avatars">
Expand All @@ -264,10 +291,6 @@ <h4>Edit Details</h4>
</div>
</div>





<footer class="footer">
<div class="container" style="background-color: rgba(255,255,255,0.2) ;">
<div class="row">
Expand Down

0 comments on commit 0ba2ef8

Please sign in to comment.