summaryrefslogtreecommitdiff
path: root/dist/callback.html
diff options
context:
space:
mode:
Diffstat (limited to 'dist/callback.html')
-rw-r--r--dist/callback.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/callback.html b/dist/callback.html
index 37b8629..cfb1bb3 100644
--- a/dist/callback.html
+++ b/dist/callback.html
@@ -70,7 +70,7 @@ body {
<h1 id="output"></h1>
</div>
<div class="out">
- <h1 id="output"></h1>
+ <p id="output"></p>
</div>
<script>
function getParameterByName(name) {
@@ -121,7 +121,7 @@ function match_users() {
throw new Error(`HTTP error! status: ${response.status}`);
}
response.text().then(function(message) {
- document.getElementById("userlist").innerHTML = message.replace(/\n/g, '<br>\n');
+ document.getElementById("userlist").innerHTML = '<p>' + message.replace(/\n/g, '</p>\n<p>') + '</p>';
});
});