Add default login value
This commit is contained in:
parent
78196f209c
commit
ba002a4392
@ -11,10 +11,14 @@ class MainWindow:
|
|||||||
self.root.title("SecCon - © Louis SWINNEN 2022")
|
self.root.title("SecCon - © Louis SWINNEN 2022")
|
||||||
self.root.config(bd=5)
|
self.root.config(bd=5)
|
||||||
self.host = tk.StringVar()
|
self.host = tk.StringVar()
|
||||||
|
self.host.set("127.0.0.1")
|
||||||
self.passw = tk.StringVar()
|
self.passw = tk.StringVar()
|
||||||
|
self.passw.set("aaaaa")
|
||||||
self.login = tk.StringVar()
|
self.login = tk.StringVar()
|
||||||
|
self.login.set("aa")
|
||||||
self.tls = tk.BooleanVar()
|
self.tls = tk.BooleanVar()
|
||||||
self.port = tk.IntVar()
|
self.port = tk.IntVar()
|
||||||
|
self.port.set(8500)
|
||||||
self.draw_window()
|
self.draw_window()
|
||||||
|
|
||||||
def start_main_loop(self):
|
def start_main_loop(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user