Commit f4fac15e authored by Taylor Otwell's avatar Taylor Otwell

Add response time and memory usage to install splash screen.

parent a4748500
...@@ -43,7 +43,14 @@ ...@@ -43,7 +43,14 @@
line-height: 25px; line-height: 25px;
} }
#wrapper { #header {
margin: 0 auto;
margin-bottom: 15px;
margin-top: 20px;
width: 80%;
}
.wrapper {
background-color: #fff; background-color: #fff;
border-radius: 10px; border-radius: 10px;
margin: 0 auto; margin: 0 auto;
...@@ -51,15 +58,14 @@ ...@@ -51,15 +58,14 @@
width: 80%; width: 80%;
} }
#wrapper h2:first-of-type { .wrapper h2:first-of-type {
margin-top: 0; margin-top: 0;
} }
#header { .footer {
margin: 0 auto; background-color: #eee;
margin-bottom: 15px; font-size: 12px;
margin-top: 20px; text-align: right;
width: 80%;
} }
</style> </style>
</head> </head>
...@@ -68,12 +74,16 @@ ...@@ -68,12 +74,16 @@
<h1 class="laravel">Laravel</h1> <h1 class="laravel">Laravel</h1>
</div> </div>
<div id="wrapper"> <div class="wrapper">
<h2>Installation Complete!</h2> <h2>Installation Complete!</h2>
<p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p> <p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p>
<p>Need to learn more? Peruse our <a href="http://laravel.com">wonderful documentation</a>.</p> <p>Need to learn more? Peruse our <a href="http://laravel.com">wonderful documentation</a>.</p>
</div> </div>
<div class="wrapper footer">
<?php echo Benchmark::check('laravel').'ms | '.Benchmark::memory().'mb'; ?>
</div>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment