diff options
author | onefang | 2019-08-04 10:30:42 +1000 |
---|---|---|
committer | onefang | 2019-08-04 10:30:42 +1000 |
commit | bf27216a290c125f565d08700bb6693387fac9bf (patch) | |
tree | 6d65f274666c6fd9cf21d8a8561c0289535ce051 /example/web | |
parent | Don't wait_for_text for anything between [], coz that's a grep thing. (diff) | |
download | opensim-SC_OLD-bf27216a290c125f565d08700bb6693387fac9bf.zip opensim-SC_OLD-bf27216a290c125f565d08700bb6693387fac9bf.tar.gz opensim-SC_OLD-bf27216a290c125f565d08700bb6693387fac9bf.tar.bz2 opensim-SC_OLD-bf27216a290c125f565d08700bb6693387fac9bf.tar.xz |
Add a basic generic web server, and a login page, plus stubs for the other basic pages.
And update everyone to suit.
Diffstat (limited to 'example/web')
-rw-r--r-- | example/web/SledjHamr.png | bin | 0 -> 2025959 bytes | |||
-rw-r--r-- | example/web/about.html | 9 | ||||
-rw-r--r-- | example/web/help.html | 9 | ||||
-rw-r--r-- | example/web/loginpage.html | 24 | ||||
-rw-r--r-- | example/web/password_help.html | 9 | ||||
-rw-r--r-- | example/web/register.html | 11 |
6 files changed, 62 insertions, 0 deletions
diff --git a/example/web/SledjHamr.png b/example/web/SledjHamr.png new file mode 100644 index 0000000..1660a90 --- /dev/null +++ b/example/web/SledjHamr.png | |||
Binary files differ | |||
diff --git a/example/web/about.html b/example/web/about.html new file mode 100644 index 0000000..e45f00a --- /dev/null +++ b/example/web/about.html | |||
@@ -0,0 +1,9 @@ | |||
1 | <html> | ||
2 | <title>About this grid</title> | ||
3 | <head> | ||
4 | </head> | ||
5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
6 | This is a virtual world, usually called a grid, based on <a href="https://sledjhamr.org/cgit/opensim-SC/?h=SledjChisl">OpenSim_SC</a>. | ||
7 | <p> </p> | ||
8 | </body> | ||
9 | </html> | ||
diff --git a/example/web/help.html b/example/web/help.html new file mode 100644 index 0000000..64194ca --- /dev/null +++ b/example/web/help.html | |||
@@ -0,0 +1,9 @@ | |||
1 | <html> | ||
2 | <title>Help for this grid</title> | ||
3 | <head> | ||
4 | </head> | ||
5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
6 | Include help for your grid here. | ||
7 | <p> </p> | ||
8 | </body> | ||
9 | </html> | ||
diff --git a/example/web/loginpage.html b/example/web/loginpage.html new file mode 100644 index 0000000..aa58e6b --- /dev/null +++ b/example/web/loginpage.html | |||
@@ -0,0 +1,24 @@ | |||
1 | <html> | ||
2 | <title>This grid</title> | ||
3 | <head> | ||
4 | </head> | ||
5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple" background="SledjHamr.png"> | ||
6 | <p> </p> | ||
7 | <p> </p> | ||
8 | <h1>Add your fancy splash page for your grid here.</h1> | ||
9 | <p> </p> | ||
10 | <p> </p> | ||
11 | <p>There may be some new members. Welcome new members.</p> | ||
12 | <p> </p> | ||
13 | <p>There are likely some members of this grid.</p> | ||
14 | <p> </p> | ||
15 | <p>There maybe some people online now.</p> | ||
16 | <p> </p> | ||
17 | <p>There maybe some visitors from the hypergrid.</p> | ||
18 | <p> </p> | ||
19 | <p>There is probably at least one region, maybe more.</p> | ||
20 | <p> </p> | ||
21 | <p>Some people might have been on in the last month.</p> | ||
22 | <p> </p> | ||
23 | </body> | ||
24 | </html> | ||
diff --git a/example/web/password_help.html b/example/web/password_help.html new file mode 100644 index 0000000..129fb7d --- /dev/null +++ b/example/web/password_help.html | |||
@@ -0,0 +1,9 @@ | |||
1 | <html> | ||
2 | <title>Password help for this grid</title> | ||
3 | <head> | ||
4 | </head> | ||
5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
6 | Include password help for your grid here. | ||
7 | <p> </p> | ||
8 | </body> | ||
9 | </html> | ||
diff --git a/example/web/register.html b/example/web/register.html new file mode 100644 index 0000000..a316f41 --- /dev/null +++ b/example/web/register.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <html> | ||
2 | <title>Account for this grid</title> | ||
3 | <head> | ||
4 | </head> | ||
5 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
6 | Include account registration help for your grid here. | ||
7 | <p> </p> | ||
8 | <p>If you want to register an acocunt on this grid, ask the person that runs it to do that for you.</p> | ||
9 | <p> </p> | ||
10 | </body> | ||
11 | </html> | ||