const handleClick = async () => {
let fd = new FormData();
fd.append("name", name);
fd.append("password", password);
const rep = await axios
.post("http://localhost/php/api/students/create.php", fd)
.catch((err) => {
console.log(err, "axios error");
});
console.log(rep.data);
};