Style the setup panel

This commit is contained in:
James Brooks
2014-12-05 10:02:27 +00:00
parent 8012bd3ba1
commit 4f05c002b5
2 changed files with 5 additions and 16 deletions

View File

@@ -28,6 +28,7 @@ return array(
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.github.io">Cachet</a>.',
'logout' => 'Logout',
'dashboard_link' => 'You\'re logged in.',
'setup' => 'Setup Cachet',
'dashboard' => array(
'dashboard' => 'Dashboard',
'components' => 'Components',

View File

@@ -1,14 +1,11 @@
@extends('layout.master')
@extends('layout.dashboard')
@section('content')
<div class='text-header'>
<h1>Setup Cachet <small>Under construction.</small></h1>
<div class='header'>
<i class='fa fa-cog'></i> {{ Lang::get('cachet.setup') }}
</div>
<hr />
<div class='row'>
<div class='col-md-8'>
<div class='col-sm-12'>
<div class='panel panel-default'>
<div class='panel-heading'>Service Details</div>
<div class='panel-body'>
@@ -70,15 +67,6 @@
</div>
</div>
</div>
<div class='col-md-4'>
<div class='panel panel-info'>
<div class='panel-heading'>Ding!</div>
<div class='panel-body'>
<p>You'll be able to reconfigure Cachet later on.</p>
<p>At least when there is a management panel&hellip;</p>
</div>
</div>
</div>
</div>
@stop