728x90
320x100
여차저차 완성했던 이메일 인증 구현부터 프론트랑 연결해보기로 했다.
토큰이랑 user_id 를 인코딩해서 url로 보내기 때문에 JS 에서도 작업해줬당
assets/js/reset_password.js
async function handleResetPassword() {
const email = document.getElementById("reset_password").value
console.log(email)
const response = await fetch(`${backend_base_url}/users/auth/password/reset/`, {
headers: {
'content-type': 'application/json',
},
method: 'POST',
body: JSON.stringify({
"email": email
})
})
return response
}
const token = location.href.split('/')[5]
const uidb64 = location.href.split('/')[4]
Check_Password()
300x250
반응형
GitHub 댓글