Browse Source

:sparkles: 实现忘记密码页面

visuddhinanda 3 years ago
parent
commit
562c34f966
1 changed files with 8 additions and 1 deletions
  1. 8 1
      dashboard/src/pages/nut/users/forgot-password.tsx

+ 8 - 1
dashboard/src/pages/nut/users/forgot-password.tsx

@@ -1,5 +1,12 @@
+import { Card } from "antd";
+import ForgotPassword from "../../../components/nut/users/ForgotPassword";
+
 const Widget = () => {
-  return <div>forgot password</div>;
+	return (
+		<Card title="忘记密码">
+			<ForgotPassword />
+		</Card>
+	);
 };
 
 export default Widget;