Cleaned up preferences view.

This commit is contained in:
James Cole 2014-11-15 09:23:07 +01:00
parent 6832f2ebd0
commit 6eb9188690
2 changed files with 66 additions and 112 deletions

View File

@ -3,11 +3,13 @@
<!-- form -->
{{Form::open(['class' => 'form-horizontal'])}}
<!-- TODO cleanup for new forms and layout. -->
<!-- home screen accounts -->
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3>Home screen accounts</h3>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-credit-card fa-fw"></i> Home screen accounts
</div>
<div class="panel-body">
<p class="text-info">Which accounts should be displayed on the home page?</p>
@foreach($accounts as $account)
<div class="form-group">
@ -24,15 +26,15 @@
</div>
</div>
@endforeach
</div>
</div>
<!-- home screen accounts -->
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3>Home view range</h3>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-clock-o fa-fw"></i> Home view range
</div>
<div class="panel-body">
<p class="text-info">By default, Firefly will show you one month of data.</p>
<div class="radio">
<label>
@ -68,22 +70,15 @@
Six months
</label>
</div>
</div>
</div>
</div>
</div>
<!-- submit button -->
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3>Submit</h3>
<div class="form-group">
<div class="col-sm-12">
<button type="submit" class="btn btn-default">Save settings</button>
<button type="submit" class="btn btn-success btn-lg">Save settings</button>
</div>
</div>
</div>

View File

@ -1,41 +0,0 @@
@extends('layouts.default')
@section('content')
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h1>Firefly<br/>
<small>Welcome!</small>
</h1>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<p>
Welcome to Firefly! To get started, choose either of the two options below.
</p><!-- TODO delete me. -->
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<h2>Start fresh</h2>
<p>
Click the link below to create your first account, and get started with Firefly.
</p>
<p>
<a href="{{route('accounts.create')}}" class="btn btn-info">Start with a new account</a>
</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<h2>Migrate from another Firefly</h2>
<p>
If you've used Firefly before and have another database around, follow this link to import
your data from a previous version.
</p>
<p>
<a href="{{route('migrate.index')}}" class="btn btn-info">Import your old data</a>
</p>
</div>
</div>
@stop