JSFiddle - React, Tailwind, and code Playground

JavaScript

for(var i = 0; i < 20; i++) {
	fetch(
"https://labs.iamhamy.xyz/fake-email-login", {
method: "POST",
mode: "no-cors",
cache: "no-cache",
credentials: "same-origin",
headers: {
"Content-Type": "application/json"
},
body: {
	"email": "[email protected]",
  "pass": "123pass!"
}})
.then(response => console.log(response));
}