aboutsummaryrefslogtreecommitdiff
path: root/VPNAuth.Server/Pages/Dashboard.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'VPNAuth.Server/Pages/Dashboard.cshtml')
-rw-r--r--VPNAuth.Server/Pages/Dashboard.cshtml3
1 files changed, 1 insertions, 2 deletions
diff --git a/VPNAuth.Server/Pages/Dashboard.cshtml b/VPNAuth.Server/Pages/Dashboard.cshtml
index 6648797..f0fea84 100644
--- a/VPNAuth.Server/Pages/Dashboard.cshtml
+++ b/VPNAuth.Server/Pages/Dashboard.cshtml
@@ -5,7 +5,6 @@
@{
Layout = null;
- string remoteIp = Request.HttpContext.GetRemoteIpAddress();
ConfigUser? configUser = Request.HttpContext.GetUser();
UserInformation? dbUser = null;
@@ -27,7 +26,7 @@
<body>
@if (configUser == null)
{
- <p>No user detected</p>
+ <p>No user detected with IP <code>@Request.HttpContext.GetRemoteIpAddress()</code>.</p>
}
else
{