-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcchat.html~
More file actions
31 lines (28 loc) · 719 Bytes
/
cchat.html~
File metadata and controls
31 lines (28 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<head>
<title>chat</title>
</head>
<body>
{{> chat}}
</body>
<template name="chat">
<div class="container">
{{> userId}}
<ul>
{{#each lines}}
<li>{{chatlineDate created_at}} <b>{{username}}</b>: {{text}}</li>
{{/each}}
</ul>
<div class="control-chat">
<input id="chatText" type="text">
<input id="postChat" type="submit" value="schreiben">
</div>
</div>
</template>
<template name="userId">
<div>
Dein Key: <input id="key" type="text" value="unnamed">
</div>
<div>
Deine address: <input id="address" type="text" value="{{address}}">
</div>
</template>