diff options
author | onefang | 2020-02-27 11:18:47 +1000 |
---|---|---|
committer | onefang | 2020-02-27 11:18:47 +1000 |
commit | 34c5ee4c2a489a506e93d5b303fbc80b263747f0 (patch) | |
tree | 53e5f29e16929503a1171a0e251249c0396c5f50 /web/loginpage.html | |
parent | Add a default gloebit config file, coz it doesn't like it if it doesn't exist. (diff) | |
download | opensim-SC-34c5ee4c2a489a506e93d5b303fbc80b263747f0.zip opensim-SC-34c5ee4c2a489a506e93d5b303fbc80b263747f0.tar.gz opensim-SC-34c5ee4c2a489a506e93d5b303fbc80b263747f0.tar.bz2 opensim-SC-34c5ee4c2a489a506e93d5b303fbc80b263747f0.tar.xz |
The new sledjchisl binary, to replace the management scripts and web stuff.
Diffstat (limited to 'web/loginpage.html')
-rw-r--r-- | web/loginpage.html | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/web/loginpage.html b/web/loginpage.html new file mode 100644 index 0000000..bceeee5 --- /dev/null +++ b/web/loginpage.html | |||
@@ -0,0 +1,108 @@ | |||
1 | <html> | ||
2 | <title><!--#echo var="grid" --> splash page</title> | ||
3 | <head> | ||
4 | <meta charset="UTF-8"> | ||
5 | <link rel="shortcut icon" href="/SledjHamrIconSmall.png"> | ||
6 | <meta http-equiv="refresh" content="120"> | ||
7 | <style> | ||
8 | html, body | ||
9 | { | ||
10 | margin: 0; | ||
11 | padding: 0; | ||
12 | color: white; | ||
13 | } | ||
14 | a {color: green;} | ||
15 | a:link {color: green;} | ||
16 | a:visited {color: purple;} | ||
17 | a:hover {color: red;} | ||
18 | a:active {color: blue;} | ||
19 | |||
20 | .container | ||
21 | { | ||
22 | position: relative; | ||
23 | text-align: left; | ||
24 | } | ||
25 | |||
26 | .top-left | ||
27 | { | ||
28 | position: absolute; | ||
29 | top: 8px; | ||
30 | left: 16px; | ||
31 | width: 30%; | ||
32 | } | ||
33 | |||
34 | .top-right | ||
35 | { | ||
36 | position: absolute; | ||
37 | top: 8px; | ||
38 | right: 16px; | ||
39 | width: 30%; | ||
40 | } | ||
41 | |||
42 | .centre | ||
43 | { | ||
44 | position: absolute; | ||
45 | top: 50%; | ||
46 | left: 50%; | ||
47 | width: 30%; | ||
48 | transform: translate(-50%, -50%); | ||
49 | } | ||
50 | |||
51 | .bottom-left | ||
52 | { | ||
53 | position: absolute; | ||
54 | bottom: 8px; | ||
55 | left: 16px; | ||
56 | width: 30%; | ||
57 | } | ||
58 | |||
59 | .bottom-right | ||
60 | { | ||
61 | position: absolute; | ||
62 | bottom: 8px; | ||
63 | right: 16px; | ||
64 | width: 30%; | ||
65 | } | ||
66 | </style> | ||
67 | <link type="text/css" rel="stylesheet" href="/debugStyle.css" media="all" /> | ||
68 | </head> | ||
69 | <body> | ||
70 | <div class="container"> | ||
71 | <img src="/SledjHamr.png" alt="SledjHamr" style="width:100%;height:100%;"> | ||
72 | <div class="top-left"> | ||
73 | <p class="hoverItem"> | ||
74 | <div class="hoverWrapper0"> | ||
75 | <p>DEBUG</p> | ||
76 | <div id="hoverShow0"> | ||
77 | <h1>DEBUG log</h1> | ||
78 | <p><!--#echo var="DEBUG" --></p> | ||
79 | </div> | ||
80 | </div> | ||
81 | </p> | ||
82 | <h1>Add your fancy splash page for <!--#echo var="grid" --> here.</h1> | ||
83 | <p> </p> | ||
84 | <p> </p> | ||
85 | <p> </p> | ||
86 | <p>Perhaps describe <!--#echo var="grid" --> here.</p> | ||
87 | </div> | ||
88 | <div class="top-right"> | ||
89 | <h1>Login URI - <!--#echo var="uri" --></h1> | ||
90 | <p> </p> | ||
91 | <p>There are <!--#echo var="members" --> members of this grid.</p> | ||
92 | <p>There are <!--#echo var="inworld" --> locals and <!--#echo var="hgers" --> hypergrid visitors in world.</p> | ||
93 | <p>There are <!--#echo var="outworld" --> locals out on the hypergrid.</p> | ||
94 | <p>There have been <!--#echo var="day30" --> locals and visitors on this grid in the last month.</p> | ||
95 | <p>There are <!--#echo var="sims" --> regions, though some might not be online right now.</p> | ||
96 | </div> | ||
97 | <div class="centre"> | ||
98 | <p>Maybe add some news or events here, or something.</p> | ||
99 | </div> | ||
100 | <div class="bottom-left"> | ||
101 | <p>CSS by Taylor Temper, photo by onefang rejected.</p> | ||
102 | </div> | ||
103 | <div class="bottom-right"> | ||
104 | <p><!--#echo var="grid" --> is running <a href="https://sledjhamr.org/mantisbt/project_page.php?project_id=8"><!--#echo var="version" --></a>, | ||
105 | part of the <a href="https://sledjhamr.org/git/docs/index.html">SledjHamr</a> project.</p> | ||
106 | </div> | ||
107 | </body> | ||
108 | </html> | ||