blob: 4ff6cbb50187d1cb7c1cc840d07af421c8b6f74c (
plain)
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
|
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<title>Chat settings</title>
<link rel="stylesheet" href="/style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body id="settings">
<form method="post" action="/save" target="_top">
<h3>Chat Settings</h3>
<label>
Nickname:
<input autocomplete="off" type="text" name="nick" value="[USERNICK]" placeholder="this one" required />
<span class="hint">What name should messages send with?</span>
</label>
<label>
Client ID:
<input autocomplete="off" type="password" name="pass" value="[USERPASS]" placeholder="(automatic)"/>
<span class="hint">Secret value used to verify identity between visits (leave this blank to generate a random one)</span>
</label>
<div class="buttonGroup">
<button type="submit">Save</button>
</div>
</form>
</body>
</html>
|