firefly-iii/resources/views/new-user/index.twig

51 lines
1.6 KiB
Twig
Raw Normal View History

2015-06-01 11:13:54 -05:00
{% extends "./layout/default.twig" %}
2015-06-19 13:59:14 -05:00
{% block breadcrumbs %}
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
{% endblock %}
2015-06-01 11:13:54 -05:00
{% block content %}
2015-06-21 04:59:35 -05:00
<form action="{{ route('new-user.submit') }}" method="post" id="store" class="form-horizontal">
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
<div class="row">
<div class="col-lg-6 col-sm-8 col-xs-12">
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{{ 'getting_started'|_ }}</h3>
</div>
<div class="box-body">
<p>
{{ 'to_get_started'|_ }}
</p>
{{ ExpandedForm.text('bank_name') }}
{{ ExpandedForm.balance('bank_balance') }}
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
<p>
{{ 'savings_balance_text'|_ }}
</p>
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
{{ ExpandedForm.balance('savings_balance') }}
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
<p>
{{ 'cc_balance_text'|_ }}
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
</p>
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
{{ ExpandedForm.balance('credit_card_limit') }}
2015-06-01 11:13:54 -05:00
2015-06-21 04:59:35 -05:00
</div>
<div class="box-footer">
<input type="submit" name="submit" value="{{ 'submit'|_ }}" class="btn btn-success pull-right"/>
</div>
</div>
</div>
</div>
</form>
2015-06-23 12:07:37 -05:00
{% endblock %}