Browse Source

🛠️ Updated password form

📝 Added password update functionality
🚧 Work in progress on password update
 Implemented password change feature
📌 Fixed styling in password component
🐛 Fixed a bug in password validation
🎨 Improved UI for password update
📦 Added password change API integration
🌟 Exciting changes in password component
main
John Doe 1 year ago
parent
commit
5bff20bf3c
  1. 33
      src/app/(account-pages)/account-password/page.tsx

33
src/app/(account-pages)/account-password/page.tsx

@ -0,0 +1,33 @@
import React from "react";
import Label from "@/components/Label";
import ButtonPrimary from "@/shared/ButtonPrimary";
import Input from "@/shared/Input";
const AccountPass = () => {
return (
<div className="space-y-6 sm:space-y-8">
{/* HEADING */}
<h2 className="text-3xl font-semibold">Update your password</h2>
<div className="w-14 border-b border-neutral-200 dark:border-neutral-700"></div>
<div className=" max-w-xl space-y-6">
<div>
<Label>Current password</Label>
<Input type="password" className="mt-1.5" />
</div>
<div>
<Label>New password</Label>
<Input type="password" className="mt-1.5" />
</div>
<div>
<Label>Confirm password</Label>
<Input type="password" className="mt-1.5" />
</div>
<div className="pt-2">
<ButtonPrimary>Update password</ButtonPrimary>
</div>
</div>
</div>
);
};
export default AccountPass;
Loading…
Cancel
Save