Spaces:
Paused
Paused
BinaryONe
commited on
Commit
·
2bb1fde
1
Parent(s):
4ce8c1f
Chnages
Browse files- WebSSH/AppHandler.py +1 -1
WebSSH/AppHandler.py
CHANGED
|
@@ -18,7 +18,7 @@ class AppHandler(tornado.web.RequestHandler):
|
|
| 18 |
|
| 19 |
def post(self):
|
| 20 |
#data = json.loads(self.body)
|
| 21 |
-
username = self.
|
| 22 |
password = self.get_argument("password")
|
| 23 |
print(f"Username: {username}, Password: {password}")
|
| 24 |
if not username or not password:
|
|
|
|
| 18 |
|
| 19 |
def post(self):
|
| 20 |
#data = json.loads(self.body)
|
| 21 |
+
username = self.get_argument("username")
|
| 22 |
password = self.get_argument("password")
|
| 23 |
print(f"Username: {username}, Password: {password}")
|
| 24 |
if not username or not password:
|