Hi @Alykhan101,
Foladun here from the Customer Account Deluxe App team. ![]()
The issue with the “Forgot Password” link was that while it was included, it wasn’t properly set up to show the recovery section.
I’ve added the necessary changes, so now clicking the “Forgot Password” link will display the recovery section as intended.
I’ll split the code across a couple replies to avoid hitting the post length limit.
Here’s the code you need to add in main-login.liquid to fix the Forgot password link:
Add this before the {%- endstyle -%} tag:
#recover {
display: none;
}
#recover:target {
display: flex;
}
#recover:target ~ #login {
display: none;
}
#RecoverEmail {
margin-bottom: 15px;
}
.form__message.recover-success {
gap: 6px;
line-height: 1.3;
}
.form__message.recover-success svg {
width: 40px;
}
@media screen and (min-width: 1024px){
.form__message.recover-success {
flex-direction: column;
}
.form__message.recover-success svg {
width: 26px;
}
}