diff --git a/app/main.py b/app/main.py
index e2bc981..f85621c 100644
--- a/app/main.py
+++ b/app/main.py
@@ -1637,28 +1637,6 @@ def session_view_page(session_id: str, request: Request, user: User = Depends(re
iframe_src = None
if iframe_src:
creds_html = ""
- if service.type != ServiceType.RDP and (service.svc_login or service.svc_password):
- rows = ""
- if service.svc_login:
- login_esc = service.svc_login.replace('"', '"').replace('<', '<')
- rows += f'''
Логин{login_esc}
'''
- if service.svc_password:
- pass_esc = service.svc_password.replace('"', '"').replace('<', '<')
- rows += f'''Пароль{pass_esc}
'''
- if service.svc_cred_hint:
- hint_esc = service.svc_cred_hint.replace('<', '<')
- rows += f'''{hint_esc}
'''
- creds_html = f'''
-
-
- {rows}
-
- '''
return HTMLResponse(
content=f"""
diff --git a/rdp-proxy/entrypoint.sh b/rdp-proxy/entrypoint.sh
index 0077b4e..b16c8b5 100644
--- a/rdp-proxy/entrypoint.sh
+++ b/rdp-proxy/entrypoint.sh
@@ -84,7 +84,6 @@ cat > /opt/portal/index.html <
-
@@ -235,7 +234,6 @@ cat > /opt/portal/index.html < chord(XK_ALT_L, XK_LEFT, 'AltLeft', 'ArrowLeft'));
document.getElementById('btn-home').addEventListener('click', goHome);
document.getElementById('btn-fs').addEventListener('click', () => {
if (!document.fullscreenElement) document.documentElement.requestFullscreen();