Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Trust and Identity Incubator
Test_IdP
Commits
ae03d95e
Commit
ae03d95e
authored
Jul 13, 2021
by
Martin van Es
Browse files
Make attribute values bullets
parent
97cf6e5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/customauth/templates/authenticate.tpl.php
View file @
ae03d95e
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment