<p class="title"></p>
let obj = {
email: 'lovee@example.com',
password: '12345678'
}
axios.post('https://hexschool-tutorial.herokuapp.com/api/signup', obj)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
This Pen doesn't use any external CSS resources.