mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
Cleaned up preferences view.
This commit is contained in:
parent
6832f2ebd0
commit
6eb9188690
@ -3,11 +3,13 @@
|
|||||||
<!-- form -->
|
<!-- form -->
|
||||||
{{Form::open(['class' => 'form-horizontal'])}}
|
{{Form::open(['class' => 'form-horizontal'])}}
|
||||||
|
|
||||||
<!-- TODO cleanup for new forms and layout. -->
|
|
||||||
<!-- home screen accounts -->
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-12 col-md-12 col-sm-12">
|
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||||
<h3>Home screen accounts</h3>
|
<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>
|
<p class="text-info">Which accounts should be displayed on the home page?</p>
|
||||||
@foreach($accounts as $account)
|
@foreach($accounts as $account)
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@ -24,15 +26,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<!-- home screen accounts -->
|
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||||
<div class="row">
|
<div class="panel panel-default">
|
||||||
<div class="col-lg-12 col-md-12 col-sm-12">
|
<div class="panel-heading">
|
||||||
<h3>Home view range</h3>
|
<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>
|
<p class="text-info">By default, Firefly will show you one month of data.</p>
|
||||||
<div class="radio">
|
<div class="radio">
|
||||||
<label>
|
<label>
|
||||||
@ -68,22 +70,15 @@
|
|||||||
Six months
|
Six months
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- submit button -->
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-12 col-md-12 col-sm-12">
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
||||||
<h3>Submit</h3>
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="col-sm-12">
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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
|
|
Loading…
Reference in New Issue
Block a user