annotate src/about.html.luan @ 93:d0566cc4a2ac default tip

uploa fix
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 03 Apr 2025 19:47:48 -0600
parents 625ffdf6499d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
1 local Luan = require "luan:Luan.luan"
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
2 local error = Luan.error
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
3 local Io = require "luan:Io.luan"
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
4 local Http = require "luan:http/Http.luan"
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
5 local Shared = require "site:/lib/Shared.luan"
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
6 local head = Shared.head or error()
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
7 local header = Shared.header or error()
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
8
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
9
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
10 return function()
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
11 Io.stdout = Http.response.text_writer()
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
12 %>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
13 <!doctype html>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
14 <html>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
15 <head>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
16 <% head() %>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
17 </head>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
18 <body>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
19 <% header() %>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
20 <div content>
51
38c209714df9 rename to Luan Chat
Franklin Schmidt <fschmidt@gmail.com>
parents: 45
diff changeset
21 <h1>About Luan Chat</h1>
25
13f4d2c8b8fe fix about
Franklin Schmidt <fschmidt@gmail.com>
parents: 21
diff changeset
22
86
625ffdf6499d web app
Franklin Schmidt <fschmidt@gmail.com>
parents: 59
diff changeset
23 <p>This is a free web-based instant messaging service written for websites wanting to provide support through chat. The other existing solutions are overcomplicated enterprise services that are often expensive. All that is really needed is a simple general chat. Each user gets a URL and other people can chat with the user through that URL. A website can use this to link to chat support.</p>
625ffdf6499d web app
Franklin Schmidt <fschmidt@gmail.com>
parents: 59
diff changeset
24
625ffdf6499d web app
Franklin Schmidt <fschmidt@gmail.com>
parents: 59
diff changeset
25 <p>Skype is being discontinued and Luan Chat was designed to be like Skype. So Skype users can switch to Luan Chat as a replacement for Skype.</p>
25
13f4d2c8b8fe fix about
Franklin Schmidt <fschmidt@gmail.com>
parents: 21
diff changeset
26
29
Franklin Schmidt <fschmidt@gmail.com>
parents: 25
diff changeset
27 <p>As a simple service, this doesn't implement features that can be handled elsewhere. In particular it doesn't provide:</p>
25
13f4d2c8b8fe fix about
Franklin Schmidt <fschmidt@gmail.com>
parents: 21
diff changeset
28 <ul>
86
625ffdf6499d web app
Franklin Schmidt <fschmidt@gmail.com>
parents: 59
diff changeset
29 <li>app notifications - If email notification is enough, just use a regular email address for notification. But if you want app notification, use the email of a service like <a href="https://pushover.net/">Pushover</a>.</li>
625ffdf6499d web app
Franklin Schmidt <fschmidt@gmail.com>
parents: 59
diff changeset
30 <li>voice, video, and screen share - Use a service like <a href="https://whereby.com/">Whereby</a> that you can link to.</li>
25
13f4d2c8b8fe fix about
Franklin Schmidt <fschmidt@gmail.com>
parents: 21
diff changeset
31 </ul>
86
625ffdf6499d web app
Franklin Schmidt <fschmidt@gmail.com>
parents: 59
diff changeset
32 <p>You can integrate these external services from the <a href="/account.html">account page</a>.</p>
25
13f4d2c8b8fe fix about
Franklin Schmidt <fschmidt@gmail.com>
parents: 21
diff changeset
33
59
8270106644db add chat.luan
Franklin Schmidt <fschmidt@gmail.com>
parents: 51
diff changeset
34 <p>For questions, <a href="https://chat.luan.software/chat?with=fschmidt@gmail.com">contact me</a>. This is an open <a href="https://hg.reactionary.software/repo/chat/">source</a> project.</p>
0
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
35 </div>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
36 </body>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
37 </html>
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
38 <%
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
39 end