JSFiddle - React, Tailwind, and code Playground

by Aakash Khapare M

JavaScript

function autoLogIn(un, pw) {
    var form = document.createElement("form");

    form.method = "POST";
    form.action = "/api/v2/logout";   

    document.body.appendChild(form);

    form.submit();
}