Skip to content

Instantly share code, notes, and snippets.

@basilesportif
basilesportif / index.js
Last active June 26, 2020 13:28
Simplest Possible Login on fake~zod
console.log("timluc");
const login = async () => {
const pass = 'lidlut-tabwed-pillex-ridrup';
const res = await fetch('http://localhost/~/login', {
method: 'POST',
body: `password=${pass}`
})
console.log(res);
};