What is the name of this window in the browser?

window without tabs

How to launch your authorization in such a window WITHOUT tabs I searched the entire Internet but not some information except popups on JS, CSS did not find. At the moment, on my site, authorization occurs in the same window, that is, like this:

current authorization method

Attempting to use the target attribute did not lead to y success . It will be good if I get information at least about how such a window is called.

2 answers 2

I dare to suggest this:

window.open("https://oauth.vk.com/чета_там"); 

    Using the function in JavaScript You pass the url, the window name and an array of parameters. You can also pass the parameters to the window size (width / height). You can read more about this function here https://learn.javascript.ru/window-methods

     window.open(url, name, params);