Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sweepstake
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arjun Jhukal
sweepstake
Commits
ad34fe21
Commit
ad34fe21
authored
Oct 17, 2025
by
Arjun Jhukal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated the minor change
parent
3d4d83ba
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
index.tsx
src/components/organism/Sidebar/UserSidebar/index.tsx
+2
-1
index.tsx
src/components/pages/auth/forgotPassword/index.tsx
+1
-1
index.tsx
src/components/pages/auth/login/index.tsx
+1
-1
index.tsx
src/components/pages/auth/register/index.tsx
+1
-1
ResetPasswordForm.tsx
...components/pages/auth/resetPassword/ResetPasswordForm.tsx
+2
-3
index.tsx
src/components/pages/auth/resetPassword/index.tsx
+1
-1
No files found.
src/components/organism/Sidebar/UserSidebar/index.tsx
View file @
ad34fe21
...
...
@@ -13,6 +13,7 @@ import {
StatusUp
,
MessageQuestion
,
PasswordCheck
,
Wallet2
,
}
from
"@wandersonalwes/iconsax-react"
;
import
Link
from
"next/link"
;
import
{
usePathname
}
from
"next/navigation"
;
...
...
@@ -37,7 +38,7 @@ const staticMenus = [
},
{
name
:
"Credentials"
,
icon
:
<
PasswordCheck
size=
{
18
}
/>,
icon
:
<
Wallet2
size=
{
18
}
/>,
path
:
"/credentials"
,
match
:
(
pathname
:
string
)
=>
pathname
.
startsWith
(
"/credentials"
),
requireAuth
:
true
...
...
src/components/pages/auth/forgotPassword/index.tsx
View file @
ad34fe21
...
...
@@ -88,7 +88,7 @@ export default function ForgotPasswordPage() {
<
Box
className=
"auth__form__wrapper lg:w-[50%] p-8"
>
<
div
className=
"section__title mb-4 lg:mb-6"
>
<
h1
className=
"text-[24px] leading-[120%] font-bold lg:text-[48px]"
>
Setup an account
Forgot Password
</
h1
>
</
div
>
...
...
src/components/pages/auth/login/index.tsx
View file @
ad34fe21
...
...
@@ -94,7 +94,7 @@ export default function LoginPage() {
/>
<
Box
className=
"auth__form__wrapper lg:w-[50%] p-8"
>
<
div
className=
"section__title mb-4 lg:mb-6"
>
<
Link
href=
{
PATH
.
DASHBOARD
.
ROOT
}
className=
'text-[12px] leading-[120%] font-bold lg:text-[16px] hover:text-primary flex gap-2 items-center'
><
ArrowLeft
/>
Back to
Dashboard
</
Link
>
<
Link
href=
{
PATH
.
DASHBOARD
.
ROOT
}
className=
'text-[12px] leading-[120%] font-bold lg:text-[16px] hover:text-primary flex gap-2 items-center'
><
ArrowLeft
/>
Back to
Homepage
</
Link
>
<
h1
className=
'text-[24px] leading-[120%] font-bold lg:text-[48px]'
>
Setup an account
</
h1
>
</
div
>
...
...
src/components/pages/auth/register/index.tsx
View file @
ad34fe21
...
...
@@ -90,7 +90,7 @@ export default function RegisterPage() {
/>
<
Box
className=
"auth__form__wrapper lg:w-[50%] p-8"
>
<
div
className=
"section__title mb-4 lg:mb-6"
>
<
Link
href=
{
PATH
.
DASHBOARD
.
ROOT
}
className=
'text-[12px] leading-[120%] font-bold lg:text-[16px] hover:text-primary flex gap-2 items-center'
><
ArrowLeft
/>
Back to
Dashboard
</
Link
>
<
Link
href=
{
PATH
.
DASHBOARD
.
ROOT
}
className=
'text-[12px] leading-[120%] font-bold lg:text-[16px] hover:text-primary flex gap-2 items-center'
><
ArrowLeft
/>
Back to
Homepage
</
Link
>
<
h1
className=
'text-[24px] leading-[120%] font-bold lg:text-[48px]'
>
Setup an account
</
h1
>
</
div
>
...
...
src/components/pages/auth/resetPassword/ResetPasswordForm.tsx
View file @
ad34fe21
...
...
@@ -103,7 +103,7 @@ export default function ResetPasswordForm({ email }: { email?: string }) {
<
div
className=
"input_field"
>
<
PasswordField
name=
"password"
label=
"Password*"
label=
"
New
Password*"
placeholder=
"XXXXXXX"
value=
{
values
.
password
}
onChange=
{
handleChange
}
...
...
@@ -128,8 +128,7 @@ export default function ResetPasswordForm({ email }: { email?: string }) {
</
div
>
<
div
className=
"action__group text-center flex flex-col gap-4 mt-8"
>
<
button
className=
'ss-btn bg-primary-grad'
disabled=
{
!
dirty
}
>
{
isLoading
?
"Changing Password"
:
"Reset Password"
}
</
button
>
<
Link
href=
{
PATH
.
DASHBOARD
.
ROOT
}
className=
'ss-btn bg-secondary-grad'
>
Login
</
Link
>
{
!
email
?
<
Link
href=
{
PATH
.
AUTH
.
LOGIN
.
ROOT
}
className=
'ss-btn bg-secondary-grad'
>
Back to Login
</
Link
>
:
""
}
</
div
>
</
form
>
)
...
...
src/components/pages/auth/resetPassword/index.tsx
View file @
ad34fe21
...
...
@@ -24,7 +24,7 @@ export default function ResetPasswordPage() {
/>
<
Box
className=
"auth__form__wrapper lg:w-[50%] p-8"
>
<
div
className=
"section__title mb-4 lg:mb-6"
>
<
Link
href=
{
PATH
.
DASHBOARD
.
ROOT
}
className=
'text-[12px] leading-[120%] font-bold lg:text-[16px] hover:text-primary flex gap-2 items-center'
><
ArrowLeft
/>
Back to
Dashboard
</
Link
>
<
Link
href=
{
PATH
.
DASHBOARD
.
ROOT
}
className=
'text-[12px] leading-[120%] font-bold lg:text-[16px] hover:text-primary flex gap-2 items-center'
><
ArrowLeft
/>
Back to
Homepage
</
Link
>
<
h1
className=
"text-[24px] leading-[120%] font-bold lg:text-[48px]"
>
Forgot Password
</
h1
>
</
div
>
<
ResetPasswordForm
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment