Thread: Splash Page
View Single Post
  #3  
Old 06-03-2015, 12:28 PM
ilrak ilrak is offline
Goldfish Fanatic
 
Join Date: Aug 2014
Location: Utah
Posts: 57
Gender: Female
Credits: 11,709
ilrak is on a distinguished road
Default

Thanks! I had an issue where it would either error out or just show the standard log in page, but I'll tinker some more.
EDIT:
Hmm ... now I have the splash page but the page looks very strange now:



I'm not sure what to do to fix this issue but to be able to have that image even display at all (nevermind that it's only half of the splash page image), my code is now:

PHP Code:
class IndexView extends View{
 
    public function 
index(){
             
$mysidia Registry::get("mysidia");
        
$document $this->document;        
        
$document->setTitle(" Welcome to Auratus Ghoti - Opening late 2015 ");
    

$document->add(new Comment("<!DOCTYPE html>
<html>
<head>
  <meta charset='utf-8'>
  <title>Auratus Ghoti</title>
</head>
<body>
<div style='min-height: 100%; background-color: orange; position: relative;'>
  <div style='position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: white; padding: 20px; border-radius:7px;'>
    <center><a href='http://auratusghoti.com/forum' target='_blank'><img src='http://i134.photobucket.com/albums/q93/flippin_k_moon/splashpage2.png'/></a></center>
<center> Auratus Ghoti is an in development Goldfish Breeding Sim where the player controls a school of goldfish as they build their school and please the creatures that they believe are gods. For a <center>limited time, the alpha forums are open for new members who are interested in joining the alpha test of this game. Alpha testing is scheduled to start in late 2015.</center>
<a href='http://auratusghoti.com/forum' target='_blank'>Join the forum here!</a> <a href='http://auratusghoti.tumblr.com' target='_blank'>Follow us on Tumblr!</a> <a href='http://auratusghoti.wikia.com/' target='_blank'>View the official wiki!</a></center>
<script async src='//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'></script>
<!-- Ad space -->
<ins class='adsbygoogle'
     style='display:block'
     data-ad-client='ca-pub-1249390240201341'
     data-ad-slot='2925505659'
     data-ad-format='auto'></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
  </div>
</div>
</body>
</html>
<!END>"
FALSE));
        
}    
}
?> 
__________________
Auratus Ghoti - Please the gods with your school
Tumblr ~ Forum ~![/URL]

Last edited by ilrak; 06-03-2015 at 01:55 PM. Reason: Fixed one issue but caused another
Reply With Quote