diff options
Diffstat (limited to '')
-rw-r--r-- | example/web/loginpage.html | 76 |
1 files changed, 61 insertions, 15 deletions
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> </p> | 44 | <div class="container"> |
7 | <p> </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. Login URI - <!--#echo var="uri" --></h1> | 46 | <div class="top-left"> |
9 | <p> </p> | 47 | <h1>Add your fancy splash page for <!--#echo var="grid" --> here.</h1> |
10 | <p> </p> | 48 | <p> </p> |
11 | <p>There are likely some (<!--#echo var="members" -->) members of this grid.</p> | 49 | <p> </p> |
12 | <p> </p> | 50 | <p> </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> </p> | 52 | <p> </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> </p> | 54 | <p> </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> </p> | 56 | <p> </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> </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> |