Add: maestro register

This commit is contained in:
2018-06-26 23:51:39 +09:00
parent 77afebbb3a
commit 6f4be3e81b
5 changed files with 186 additions and 37 deletions
@@ -20,8 +20,6 @@ function login() {
xhr.open('POST', './../server/maestro/login.php', true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send("maestro_name=" + name + "&password=" + password);
//응답
xhr.onload = function() {
if(xhr.readyState === 4 && xhr.status === 200) {
let replyJSON = JSON.parse(xhr.responseText);