diff --git a/modules/customauth/templates/authenticate.tpl.php b/modules/customauth/templates/authenticate.tpl.php index e7419974c20a6afeff9408a75cd12d9f6bd55153..a32c0725f115b9977316d82637650f22b10a4fe7 100644 --- a/modules/customauth/templates/authenticate.tpl.php +++ b/modules/customauth/templates/authenticate.tpl.php @@ -83,7 +83,12 @@ var html = ""; for (let key in users[user]) { if (keys[key]) { - html += "<b>" + key + "</b>: " + users[user][key] + "<br />\n"; + var vals = users[user][key]; + //html += "<b>" + key + "</b>: " + users[user][key] + "<br />\n"; + html += "<b>" + key + "</b>: \n"; + for (let i in vals) { + html += "<li>" + vals[i] + "</li>\n"; + } } } $('#output').html(html);