Files
ocr-nextjs/src/app/components/LoginForm.tsx
2025-07-16 00:13:30 +09:00

33 lines
725 B
TypeScript

'use client';
import axios from "axios";
import { useState } from "react";
const LoginForm = () => {
const [id, setId] = useState('') //ID
const [pw, setPw] = useState('') //PW
const [param, setParam] = useState()
const login = () => {
axios.post('login/oauth-kakao', {
})
}
return (
<>
<input type="text"
placeholder="ID"
value={id}
onChange={(e) => {setId(e.target.value)}}/>
<input type="password"
placeholder="PW"
value={pw}
onChange={(e) => {setPw(e.target.value)}}/>
<button type="button" onClick={login}></button>
</>
)
}