mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-14 16:13:54 +00:00
Various files updated to twig [skip ci]
This commit is contained in:
@@ -162,6 +162,7 @@ class ConfigServiceProvider extends ServiceProvider
|
|||||||
],
|
],
|
||||||
'Session',
|
'Session',
|
||||||
'Route',
|
'Route',
|
||||||
|
'Auth',
|
||||||
'URL',
|
'URL',
|
||||||
'Config',
|
'Config',
|
||||||
'ExpandedForm' => [
|
'ExpandedForm' => [
|
||||||
@@ -208,6 +209,7 @@ class ConfigServiceProvider extends ServiceProvider
|
|||||||
'elixir',
|
'elixir',
|
||||||
'head',
|
'head',
|
||||||
'last',
|
'last',
|
||||||
|
'old'
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
45
resources/twig/auth/password.twig
Normal file
45
resources/twig/auth/password.twig
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{% extends "./layout/guest.twig" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 col-md-offset-4">
|
||||||
|
<div class="login-panel panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<h3 class="panel-title">Firefly III — Reset Password</h3>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
{% if session.status %}
|
||||||
|
<div class="alert alert-success">
|
||||||
|
{{ session.status }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if errors|length > 0 %}
|
||||||
|
<div class="alert alert-danger">
|
||||||
|
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
||||||
|
<ul>
|
||||||
|
{% for error in errors.all %}
|
||||||
|
<li>{{ error }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<form role="form" method="POST" action="/password/email">
|
||||||
|
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="control-label">E-Mail</label>
|
||||||
|
<input type="email" class="form-control" placeholder="E-Mail" name="email" value="{{ old.email }}">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<button type="submit" class="btn btn-lg btn-success btn-block">Send Password Reset</button>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
58
resources/twig/auth/register.twig
Normal file
58
resources/twig/auth/register.twig
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
{% extends "./layout/guest.twig" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 col-md-offset-4">
|
||||||
|
<div class="login-panel panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<h3 class="panel-title">Firefly III — Register</h3>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<p>
|
||||||
|
Registering an account on Firefly requires an e-mail address.
|
||||||
|
</p>
|
||||||
|
{% if errors|length > 0 %}
|
||||||
|
<div class="alert alert-danger">
|
||||||
|
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
||||||
|
<ul>
|
||||||
|
{% for error in errors.all %}
|
||||||
|
<li>{{ error }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<form role="form" id="register" method="POST" action="/auth/register">
|
||||||
|
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="control-label">E-Mail</label>
|
||||||
|
<input type="email" class="form-control" placeholder="E-Mail" name="email" value="{{ old.email }}">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="control-label">Password</label>
|
||||||
|
<input type="password" placeholder="Password" class="form-control" name="password">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="control-label">Confirm Password</label>
|
||||||
|
<input type="password" placeholder="Confirm Password" class="form-control" name="password_confirmation">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<button type="submit" class="btn btn-lg btn-success btn-block">Register</button>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="btn-group btn-group-justified btn-group-sm">
|
||||||
|
<a href="/auth/login" class="btn btn-default">Login</a>
|
||||||
|
<a href="/password/email" class="btn btn-default">Forgot your password?</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
45
resources/twig/list/reminders.twig
Normal file
45
resources/twig/list/reminders.twig
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<div class="row">
|
||||||
|
{% if reminders|length > 0 %}
|
||||||
|
{% for reminder in reminders %}
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<a href="{{ route('reminders.show',reminder.id) }}">
|
||||||
|
{% if reminder.notnow %}
|
||||||
|
Dismissed reminder
|
||||||
|
{% else %}
|
||||||
|
Reminder
|
||||||
|
{% endif %}
|
||||||
|
for piggy bank "{{reminder.remindersable.name}}"
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<p>
|
||||||
|
This reminder is active between {{reminder.startdate.format('jS F Y')}}
|
||||||
|
and {{reminder.enddate.format('jS F Y')}}.
|
||||||
|
</p>
|
||||||
|
{% if reminder.description %}
|
||||||
|
<p>{{ reminder.description|raw }}</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="panel-footer">
|
||||||
|
<div class="btn-group">
|
||||||
|
{% if not reminder.notnow %}
|
||||||
|
<a class="btn btn-warning" href="{{route('reminders.dismiss',reminder.id)}}">Dismiss</a>
|
||||||
|
{% endif %}
|
||||||
|
{% if reminder.active %}
|
||||||
|
<a class="btn btn-success" href="{{route('reminders.act',reminder.id)}}">Act</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||||
|
<p class="small">
|
||||||
|
(No reminders)
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
55
resources/twig/profile/change-password.twig
Normal file
55
resources/twig/profile/change-password.twig
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
{% extends "./layout/default.twig" %}
|
||||||
|
{% block content %}
|
||||||
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-12 col-sm-12">
|
||||||
|
<div class="panel panel-primary">
|
||||||
|
<div class="panel-heading">
|
||||||
|
Change your password
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
|
||||||
|
{% if errors|length > 0 %}
|
||||||
|
<ul>
|
||||||
|
<ul>
|
||||||
|
{% for error in errors.all %}
|
||||||
|
<li class="text-danger">{{ error }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
|
{{ Form.open({'class' : 'form-horizontal','id' : 'change-password'}) }}
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="inputOldPassword" class="col-sm-4 control-label">Old password</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input type="password" class="form-control" id="inputOldPassword" placeholder="Old password" name="current_password">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="inputNewPassword1" class="col-sm-4 control-label">New password</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input type="password" class="form-control" id="inputNewPassword1" placeholder="New password" name="new_password">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="inputNewPassword2" class="col-sm-4 control-label">New password (again)</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input type="password" class="form-control" id="inputNewPassword2" placeholder="New password (again)" name="new_password_confirmation">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-sm-offset-4 col-sm-10">
|
||||||
|
<button type="submit" class="btn btn-success">Change your password</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
49
resources/twig/profile/delete-account.twig
Normal file
49
resources/twig/profile/delete-account.twig
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{% extends "./layout/default.twig" %}
|
||||||
|
{% block content %}
|
||||||
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-12 col-sm-12">
|
||||||
|
<div class="panel panel-red">
|
||||||
|
<div class="panel-heading">
|
||||||
|
Delete your account
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
|
||||||
|
<p class="text-danger">
|
||||||
|
Deleting your account will also delete any accounts, transactions, <em>anything</em>
|
||||||
|
you might have saved into Firefly III. It'll be GONE.
|
||||||
|
</p>
|
||||||
|
<p class="text-danger">
|
||||||
|
Enter your password to continue.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{% if errors|length > 0 %}
|
||||||
|
<ul>
|
||||||
|
<ul>
|
||||||
|
{% for error in errors.all %}
|
||||||
|
<li class="text-danger">{{ error }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{{ Form.open({'class' : 'form-horizontal','id' : 'change-password'}) }}
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password" class="col-sm-4 control-label">Password</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input type="password" class="form-control" id="password" placeholder="Password" name="password">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-sm-offset-4 col-sm-10">
|
||||||
|
<button type="submit" onclick="confirm('Are you sure? You cannot undo this.')" class="btn btn-danger">DELETE your account</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
19
resources/twig/profile/index.twig
Normal file
19
resources/twig/profile/index.twig
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{% extends "./layout/default.twig" %}
|
||||||
|
{% block content %}
|
||||||
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-12 col-sm-12">
|
||||||
|
<div class="panel panel-primary">
|
||||||
|
<div class="panel-heading">
|
||||||
|
Options
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{route('change-password')}}">Change your password</a></li>
|
||||||
|
<li><a class="text-danger" href="{{route('delete-account')}}">Delete account</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
37
resources/twig/reminders/index.twig
Normal file
37
resources/twig/reminders/index.twig
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
{% extends "./layout/default.twig" %}
|
||||||
|
{% block content %}
|
||||||
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||||
|
<h3>Active reminders</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include 'list/reminders.twig' with {'reminders': active} %}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||||
|
<h3>Dismissed reminders</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include 'list/reminders.twig' with {'reminders': dismissed} %}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||||
|
<h3>Expired reminders</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include 'list/reminders.twig' with {'reminders': expired} %}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||||
|
<h3>Inactive reminders</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include 'list/reminders.twig' with {'reminders': inactive} %}
|
||||||
|
|
||||||
|
{% endblock %}
|
40
resources/twig/reminders/show.twig
Normal file
40
resources/twig/reminders/show.twig
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
{% extends "./layout/default.twig" %}
|
||||||
|
{% block content %}
|
||||||
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, reminder) }}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<a href="{{route('reminders.show',reminder.id)}}">
|
||||||
|
{% if reminder.notnow %}
|
||||||
|
Dismissed reminder
|
||||||
|
{% else %}
|
||||||
|
Reminder
|
||||||
|
{% endif %}
|
||||||
|
for piggy bank "{{reminder.remindersable.name}}"
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
<p>
|
||||||
|
Active between {{reminder.startdate.format('jS F Y')}}
|
||||||
|
and {{reminder.enddate.format('jS F Y')}}.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{% if reminder.description %}
|
||||||
|
<p>{!! reminder.description !!}</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="panel-footer">
|
||||||
|
<div class="btn-group">
|
||||||
|
{% if not reminder.notnow %}
|
||||||
|
<a class="btn btn-warning" href="{{route('reminders.dismiss',reminder.id)}}">Dismiss</a>
|
||||||
|
{% endif %}
|
||||||
|
{% if reminder.active %}
|
||||||
|
<a class="btn btn-success" href="{{route('reminders.act',reminder.id)}}">Act</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
Reference in New Issue
Block a user