Skip to content

Commit 38561b1

Browse files
authored
Update index.html
1 parent 5d98c46 commit 38561b1

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

index.html

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="nl">
33
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
4+
<meta charset="UTF-8">
65
<title>Indicatiehulp Webchat</title>
76
<style>
8-
body { font-family: sans-serif; margin: 0; padding: 0; display: flex; flex-direction: column; height: 100vh; }
9-
#chat { flex: 1; overflow-y: auto; padding: 1em; background: #f4f4f4; }
10-
#input-form { display: flex; padding: 1em; background: #fff; }
11-
input { flex: 1; padding: 0.5em; font-size: 1em; }
12-
button { padding: 0.5em 1em; }
13-
.user { font-weight: bold; margin-top: 1em; }
14-
.agent { margin-left: 1em; color: #333; }
7+
#chat { height: 400px; overflow-y: scroll; border: 1px solid #ccc; padding: 10px; }
8+
.user, .agent { margin: 5px 0; }
9+
.user { font-weight: bold; }
1510
</style>
1611
</head>
1712
<body>
13+
<h2>Webchat Indicatiehulp</h2>
1814
<div id="chat"></div>
1915
<form id="input-form">
20-
<input type="text" id="user-input" placeholder="Typ hier je vraag..." autocomplete="off" />
16+
<input id="user-input" type="text" placeholder="Typ hier..." />
2117
<button type="submit">Verzend</button>
2218
</form>
2319
<script src="script.js"></script>

0 commit comments

Comments
 (0)