diff options
author | maride <maride@darknebu.la> | 2018-09-04 11:08:30 +0200 |
---|---|---|
committer | maride <maride@darknebu.la> | 2018-09-04 11:08:30 +0200 |
commit | a46cb83df474e5f9c9be35a0f4543f85bf9f03ee (patch) | |
tree | bfc40755646b473a4b3081dd5c6c46ac221a8a78 | |
parent | 939ef7db9b3f209c4fa521a8d6ef4231ee397760 (diff) |
Avoid HTML rendering of OVPN certificate
-rw-r--r-- | hosted/access.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosted/access.html b/hosted/access.html index d2fc69a..5a25fd0 100644 --- a/hosted/access.html +++ b/hosted/access.html @@ -55,7 +55,7 @@ $("#config").html("Loading..."); $.get("/api/getAccess").done(function(data) { var result = jQuery.parseJSON(data); - $("#config").html(result["credentials"]); + $("#config").text(result["credentials"]); }); } |