From 2b09591524b2fcef00ca1b58a9d5b91731081b41 Mon Sep 17 00:00:00 2001 From: BaiCai <101706274+baicai99@users.noreply.github.com> Date: Sun, 27 Apr 2025 22:02:53 +0800 Subject: [PATCH] Update page.tsx --- web_ui/src/app/login/page.tsx | 109 +++++++++++++++++++++++++++++++++- 1 file changed, 107 insertions(+), 2 deletions(-) diff --git a/web_ui/src/app/login/page.tsx b/web_ui/src/app/login/page.tsx index ec5499d9..cf225989 100644 --- a/web_ui/src/app/login/page.tsx +++ b/web_ui/src/app/login/page.tsx @@ -1,7 +1,112 @@ +'use client'; +import { Button, Input, Form, Checkbox, Divider } from 'antd'; +import { GoogleOutlined, AppleOutlined, LockOutlined, UserOutlined } from '@ant-design/icons'; +import styles from './login.module.css'; +import { useState } from 'react'; + export default function Home() { + const [form] = Form.useForm(); + const [rememberMe, setRememberMe] = useState(false); + return ( -