I wish to open a url in a tkinter gui. This works fine, however, when I click on the login icon it opens in an external browser. Am I able to log into the site and stay in the same tkinter gui? Thanks
# Import tkinter and webview libraries
from tkinter import *
import webview
# define an instance of tkinter
tk = Tk()
# size of the window where we show our website
tk.geometry("800x800")
# Open website
webview.create_window('mapgenie', 'https://mapgenie.io/diablo-4/maps/sanctuary')
webview.start()