aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS.txt7
-rw-r--r--example/web/loginpage.html76
2 files changed, 68 insertions, 15 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 64282ed..4dcd19e 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -4,6 +4,13 @@ The following people have contributed to OpenSim (Thank you for your effort!)
4 4
5* onefang rejected 5* onefang rejected
6 6
7= Additional OpenSim-SC fork contributors =
8These folks have contributed code patches or content to OpenSim-SC fork
9to help make it what it is today.
10
11* Taylor Temper
12
13
7= Current OpenSim Developers (in very rough order of appearance) = 14= Current OpenSim Developers (in very rough order of appearance) =
8These folks represent the current core team for OpenSim, and are the 15These folks represent the current core team for OpenSim, and are the
9people that make the day to day of OpenSim happen. 16people that make the day to day of OpenSim happen.
diff --git a/example/web/loginpage.html b/example/web/loginpage.html
index 9246263..abce719 100644
--- a/example/web/loginpage.html
+++ b/example/web/loginpage.html
@@ -1,21 +1,67 @@
1<html> 1<html>
2<title><!--#echo var="grid" --> splash page</title> 2<title><!--#echo var="grid" --> splash page</title>
3<head> 3<head>
4<style>
5.container {
6 position: relative;
7 text-align: left;
8 color: white;
9}
10
11.top-left {
12 position: absolute;
13 top: 8px;
14 left: 16px;
15}
16
17.top-right {
18 position: absolute;
19 top: 8px;
20 right: 16px;
21}
22
23.centered {
24 position: absolute;
25 top: 50%;
26 left: 50%;
27 transform: translate(-50%, -50%);
28}
29
30.bottom-left {
31 position: absolute;
32 bottom: 8px;
33 left: 16px;
34}
35
36.bottom-right {
37 position: absolute;
38 bottom: 8px;
39 right: 16px;
40}
41</style>
4</head> 42</head>
5<body bgcolor="black" text="white" alink="red" link="blue" vlink="purple" background="SledjHamr.png"> 43<body bgcolor="black" text="white" alink="red" link="green" vlink="purple">
6<p>&nbsp;</p> 44<div class="container">
7<p>&nbsp;</p> 45 <img src="SledjHamr.png" alt="SledjHamr" style="width:100%;height:98%;">
8<h1>Add your fancy splash page for <!--#echo var="grid" --> here. &nbsp; &nbsp; Login URI - <!--#echo var="uri" --></h1> 46 <div class="top-left">
9<p>&nbsp;</p> 47 <h1>Add your fancy splash page for <!--#echo var="grid" --> here.</h1>
10<p>&nbsp;</p> 48 <p>&nbsp;</p>
11<p>There are likely some (<!--#echo var="members" -->) members of this grid.</p> 49 <p>&nbsp;</p>
12<p>&nbsp;</p> 50 <p>&nbsp;</p>
13<p>There are maybe some (<!--#echo var="inworld" -->) people in world now (including hypergridders).</p> 51 <p>There are likely some (<!--#echo var="members" -->) members of this grid.</p>
14<p>&nbsp;</p> 52 <p>&nbsp;</p>
15<p>There are maybe some (<!--#echo var="outworld" -->) locals hypergridding now.</p> 53 <p>There are maybe some (<!--#echo var="inworld" -->) people in world now (including hypergridders).</p>
16<p>&nbsp;</p> 54 <p>&nbsp;</p>
17<p>There is probably at least one (<!--#echo var="sims" -->) region, maybe more.</p> 55 <p>There are maybe some (<!--#echo var="outworld" -->) locals hypergridding now.</p>
18<p>&nbsp;</p> 56 <p>&nbsp;</p>
19<p> This grid is running <!--#echo var="version" --></p> 57 <p>There is probably at least one (<!--#echo var="sims" -->) region, maybe more.</p>
58 <p>&nbsp;</p>
59 </div>
60 <div class="top-right">
61 <h1>Login URI - <!--#echo var="uri" --></h1>
62 </div>
63 <div class="bottom-right">
64 <p> This grid is running <a href="https://sledjhamr.org/mantisbt/project_page.php?project_id=8"><!--#echo var="version" --></a></p>
65</div>
20</body> 66</body>
21</html> 67</html>