diff options
Diffstat (limited to 'example/var/www/html/footer.html')
-rw-r--r-- | example/var/www/html/footer.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/example/var/www/html/footer.html b/example/var/www/html/footer.html new file mode 100644 index 0000000..f514fb6 --- /dev/null +++ b/example/var/www/html/footer.html | |||
@@ -0,0 +1,55 @@ | |||
1 | </div> | ||
2 | <div class='top-right'> | ||
3 | <h1>Experimental account manager</h1> | ||
4 | <p>This account manager system is currently experimental, and under heavy development. | ||
5 | Which means it's not all written yet, and things may break.</p> | ||
6 | <p>To create an account, choose a name and password, type them in, click the 'create account' button.</p> | ||
7 | <p>On the next page, fill in all your details, then click on the 'confirm' button.</p> | ||
8 | <p>We follow the usual web site registration process, which sends a validation email, with a link to click. | ||
9 | When you get that email, click on the link, or copy it into a web browser.</p> | ||
10 | <p>You will then be logged off. Now you have to wait for an admin to approve your new account. | ||
11 | They should check with the person you listed as vouching for you first. They will tell you after they approve your account.</p> | ||
12 | <p>Missing bits that are still being written - editing accounts, listing accounts, deleting accounts.</p> | ||
13 | <h1>Experimental chat thingy</h1> | ||
14 | <p>In the bottom right corner is an experimental chat thingy, based on Jabber / XMPP.</p> | ||
15 | <p>Click on the 'Toggle chat' button to pop it up, then use your grid user name for the 'XMPP Address:' field. | ||
16 | Your user name has to be in the format 'first.last', two words with a dot in the middle. | ||
17 | Then put your grid account password in the 'Password' field and click the 'Log in' button. | ||
18 | <p>Note that the chat windows can be resized by dragging their top or left edges, which I suggest you do, coz the default size is too small.</p> | ||
19 | <p>You can also use any other Jabber / XMPP client as well. So your JID for other clients is first.last@<!--#echo var="host" --></p> | ||
20 | <p>Remember this is <b>EXPERIMENTAL</b>, I'll be changing things. Next I'll make it so you don't have to log in to both this chat thingy and the account page separataly.<p> | ||
21 | <p>P.S. Yes, I hate the default theme to. lol</p> | ||
22 | </div> | ||
23 | <div class='bottom-left'> | ||
24 | <iframe src='stats.html' style='border:none;height:100%;width:100%;'></iframe> | ||
25 | </div> | ||
26 | <div class='bottom-right'> | ||
27 | </div> | ||
28 | </font> | ||
29 | </body> | ||
30 | |||
31 | <script> | ||
32 | converse.initialize({ | ||
33 | allow_registration: false, | ||
34 | assets_path: '/converse.js/dist/', | ||
35 | bosh_service_url: 'https://<!--#echo var="host" -->:5281/http-bind/', | ||
36 | default_domain: '<!--#echo var="host" -->', | ||
37 | muc_clear_messages_on_leave: false, | ||
38 | muc_domain: 'chat.<!--#echo var="host" -->', | ||
39 | muc_history_max_stanzas: 0, | ||
40 | muc_instant_rooms: false, | ||
41 | muc_send_probes: true, | ||
42 | notify_all_room_messages: true, | ||
43 | notification_delay: 500000, | ||
44 | notification_icon: '/converse.js/dist/images/logo/conversejs-filled.svg', | ||
45 | omemo_default: true, | ||
46 | play_sounds: true, | ||
47 | registration_domain: '<!--#echo var="host" -->', | ||
48 | show_chat_state_notifications: true, | ||
49 | show_message_avatar: true, | ||
50 | theme: 'dracula', | ||
51 | time_format: 'dddd YYYY-MMM-DD HH:mm:ss', | ||
52 | view_mode: 'overlayed' | ||
53 | }) | ||
54 | </script> | ||
55 | </html> | ||