Update password page

pull/3813/head
Kamran Ahmed 2 years ago
parent 33d7257ed2
commit a4256db687
  1. 2
      src/components/Setting/SettingSidebar.astro
  2. 4
      src/components/Setting/UpdatePasswordForm.tsx

@ -25,7 +25,7 @@ export interface Props {
<a <a
href='/settings/update-password' href='/settings/update-password'
class=`block w-full rounded px-2 py-1.5 font-medium text-slate-900 hover:bg-slate-200 ${pageUrl === 'change-password' ? 'bg-slate-100' : ''}` class=`block w-full rounded px-2 py-1.5 font-medium text-slate-900 hover:bg-slate-200 ${pageUrl === 'change-password' ? 'bg-slate-100' : ''}`
>Change password</a >Change Password</a
> >
</li> </li>
</ul> </ul>

@ -13,7 +13,7 @@ export default function UpdatePasswordForm() {
const [error, setError] = useState(''); const [error, setError] = useState('');
const [success, setSuccess] = useState(''); const [success, setSuccess] = useState('');
const [isLoading, setIsLoading] = useState(false); const [isLoading, setIsLoading] = useState(true);
const handleSubmit = async (e: Event) => { const handleSubmit = async (e: Event) => {
e.preventDefault(); e.preventDefault();
@ -88,7 +88,7 @@ export default function UpdatePasswordForm() {
return ( return (
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<h2 className="text-3xl font-bold sm:text-4xl">Password</h2> <h2 className="text-3xl font-bold sm:text-4xl">Password</h2>
<p className="mt-2">Manage settings for your account passwords</p> <p className="mt-2">Use the form below to update your password.</p>
<div className="mt-8 space-y-4"> <div className="mt-8 space-y-4">
{authProvider === 'email' && ( {authProvider === 'email' && (
<div className="flex w-full flex-col"> <div className="flex w-full flex-col">

Loading…
Cancel
Save