This commit is contained in:
2025-07-16 00:13:30 +09:00
parent bb8cfb291a
commit 645e0b033b
4 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
'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>
</>
)
}