Files
spring-batch-quartz/batch-quartz/src/main/resources/static/js/pages/sign/sign-up.js
mindol1004 658f3d5543 commit
2024-09-06 18:45:36 +09:00

9 lines
393 B
JavaScript

import {signUp} from '../../apis/sign-api.js';
document.getElementById('signupForm').addEventListener('submit', function(event) {
event.preventDefault();
const loginId = document.getElementById('loginId').value;
const password = document.getElementById('password').value;
const userName = document.getElementById('userName').value;
signUp(loginId, password, userName);
});