visuddhinanda 2 лет назад
Родитель
Сommit
54386a69d3

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

@@ -1,4 +1,4 @@
-import { Card } from "antd";
+import { Card, Divider } from "antd";
 import ForgotPassword from "../../../components/nut/users/ForgotPassword";
 import NonSignInSharedLinks from "../../../components/nut/users/NonSignInSharedLinks";
 import { useIntl } from "react-intl";
@@ -12,6 +12,7 @@ const Widget = () => {
       })}
     >
       <ForgotPassword />
+      <Divider />
       <NonSignInSharedLinks />
     </Card>
   );

+ 2 - 1
dashboard/src/pages/nut/users/reset-password.tsx

@@ -1,4 +1,4 @@
-import { Card } from "antd";
+import { Card, Divider } from "antd";
 import NonSignInSharedLinks from "../../../components/nut/users/NonSignInSharedLinks";
 import { useParams } from "react-router-dom";
 import ResetPassword from "../../../components/nut/users/ResetPassword";
@@ -15,6 +15,7 @@ const Widget = () => {
       })}
     >
       <ResetPassword token={token} />
+      <Divider />
       <NonSignInSharedLinks />
     </Card>
   );