mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	New views for password reset, login and other user forms.
This commit is contained in:
		| @@ -1,39 +1,28 @@ | ||||
| <!doctype html> | ||||
| <html lang="en" dir="ltr"> | ||||
| <head> | ||||
|     <base href="{{ route('index') }}/"> | ||||
|     <meta charset="UTF-8"> | ||||
|     <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||||
|     <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||||
|     <meta http-equiv="Content-Language" content="en"/> | ||||
|  | ||||
|     {# favicons #} | ||||
|     {% include('partials.favicons') %} | ||||
|  | ||||
|     <title>TODO replace meLogin</title> | ||||
|     <link rel="stylesheet" href="v2/lib/font-awesome/4.7.0/css/font-awesome.min.css"> | ||||
|     <link rel="stylesheet" href="v2/assets/css/gf-source.css"> | ||||
|     <script src="v2/assets/js/require.min.js"></script> | ||||
|     <script> | ||||
|         requirejs.config({ | ||||
|                              baseUrl: '.' | ||||
|                          }); | ||||
|     </script> | ||||
|     <!-- Dashboard Core --> | ||||
|     <link href="v2/assets/css/dashboard.css" rel="stylesheet"/> | ||||
|     <script src="v2/assets/js/dashboard.js"></script> | ||||
|     <!-- Input Mask Plugin --> | ||||
|     <script src="v2/assets/plugins/input-mask/plugin.js"></script> | ||||
| </head> | ||||
| <body class=""> | ||||
| <div class="page"> | ||||
|     <div class="page-single"> | ||||
| {% extends "./layout/auth" %} | ||||
| {% block content %} | ||||
|  <div class="page-single"> | ||||
|         <div class="container"> | ||||
|             <div class="row"> | ||||
|                 <div class="col col-login mx-auto"> | ||||
|                     <div class="text-center mb-6"> | ||||
|                         <img src="v2/assets/images/firefly-iii-48.png" class="h-6" alt="Firefly III"> | ||||
|                         <img src="v2/assets/images/firefly-iii-48.png" class="h-6" alt="Firefly III v{{ FF_VERSION }}" title="Firefly III v{{ FF_VERSION }}"> | ||||
|                     </div> | ||||
|                     {# ERROR LOGIN STUFF #} | ||||
|                     {% if errors.all|length > 0 %} | ||||
|                         <div class="alert alert-danger" role="alert"> | ||||
|                             {% if errors.all|length == 1 %} | ||||
|                                 <strong>{{ 'flash_error'|_ }}</strong> {{ errors.first() }} | ||||
|                             {% else %} | ||||
|                                 <strong>{{ 'flash_error'|_ }}</strong> | ||||
|                                 <ul> | ||||
|                                     {% for message in errors.all %} | ||||
|                                         <li>{{ message }}</li> | ||||
|                                     {% endfor %} | ||||
|                                 </ul> | ||||
|                             {% endif %} | ||||
|                         </div> | ||||
|                     {% endif %} | ||||
|  | ||||
|                     <form class="card" action="{{ route('login') }}" method="post"> | ||||
|                         <input type="hidden" name="_token" value="{{ csrf_token() }}"/> | ||||
|                         <div class="card-body p-6"> | ||||
| @@ -52,10 +41,15 @@ | ||||
|                             <div class="form-group"> | ||||
|                                 {% if env('LOGIN_PROVIDER', 'eloquent') == 'eloquent' %} | ||||
|                                     <label class="form-label">{{ trans('form.email') }}</label> | ||||
|                                     <input type="email" class="form-control" id="email" autocomplete="email" aria-describedby="emailHelp" placeholder="{{ trans('form.email') }}"> | ||||
|                                     <input type="email" class="{% if errors.has('email') %}is-invalid{% endif %} form-control" name="email" id="email" value="{{ old('email') }}" autocomplete="email" aria-describedby="emailHelp" placeholder="{{ trans('form.email') }}" required> | ||||
|                                     {% if errors.has('email') %} | ||||
|                                         <div class="invalid-feedback"> | ||||
|                                             {{ errors.get('email')[0] }} | ||||
|                                         </div> | ||||
|                                     {% endif %} | ||||
|                                 {% else %} | ||||
|                                     <label class="form-label">{{ trans('form.login_name') }}</label> | ||||
|                                     <input type="email" class="form-control" id="email" autocomplete="username" aria-describedby="emailHelp" placeholder="{{ trans('form.login_name') }}"> | ||||
|                                     <input type="email" class="{% if errors.has('email') %}is-invalid{% endif %} form-control" name="email" id="email" autocomplete="username" aria-describedby="emailHelp" placeholder="{{ trans('form.login_name') }}" required> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
| @@ -65,7 +59,12 @@ | ||||
|                                     <a href="{{ route('password.reset.request') }}" class="float-right small">{{ 'forgot_my_password'|_ }}</a> | ||||
|                                     {% endif %} | ||||
|                                 </label> | ||||
|                                 <input type="password" class="form-control" autocomplete="password" id="password" placeholder="Password"> | ||||
|                                 <input type="password" name="password" class="{% if errors.has('password') %}is-invalid{% endif %} form-control" autocomplete="password" id="password" placeholder="Password"> | ||||
|                                 {% if errors.has('password') %} | ||||
|                                     <div class="invalid-feedback"> | ||||
|                                         {{ errors.get('password')[0] }} | ||||
|                                     </div> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="custom-control custom-checkbox"> | ||||
| @@ -80,13 +79,11 @@ | ||||
|                     </form> | ||||
|                     {% if allowRegistration %} | ||||
|                     <div class="text-center text-muted"> | ||||
|                         Don't have account yet? <a href="./register.html">Sign up</a> | ||||
|                         <a href="{{ route('register') }}">{{ 'register_new_account'|_ }}</a> | ||||
|                     </div> | ||||
|                     {% endif %} | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
| </body> | ||||
| </html> | ||||
| {% endblock %} | ||||
							
								
								
									
										62
									
								
								resources/views/v2/auth/passwords/email.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										62
									
								
								resources/views/v2/auth/passwords/email.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,62 @@ | ||||
| {% extends "./layout/auth" %} | ||||
| {% block content %} | ||||
|     <div class="page-single"> | ||||
|         <div class="container"> | ||||
|             <div class="row"> | ||||
|                 <div class="col col-login mx-auto"> | ||||
|                     <div class="text-center mb-6"> | ||||
|                         <img src="v2/assets/images/firefly-iii-48.png" class="h-6" alt="Firefly III v{{ FF_VERSION }}" title="Firefly III v{{ FF_VERSION }}"> | ||||
|                     </div> | ||||
|  | ||||
|                     {# ERRORS FOR RESET LOGIN STUFF #} | ||||
|                     {% if errors.all|length > 0 %} | ||||
|                         <div class="alert alert-danger" role="alert"> | ||||
|                             {% if errors.all|length == 1 %} | ||||
|                                 <strong>{{ 'flash_error'|_ }}</strong> {{ errors.first() }} | ||||
|                             {% else %} | ||||
|                                 <strong>{{ 'flash_error'|_ }}</strong> | ||||
|                                 <ul> | ||||
|                                     {% for message in errors.all %} | ||||
|                                         <li>{{ message }}</li> | ||||
|                                     {% endfor %} | ||||
|                                 </ul> | ||||
|                             {% endif %} | ||||
|                         </div> | ||||
|                     {% endif %} | ||||
|  | ||||
|                     <form class="card" action="{{ route('password.email') }}" method="post"> | ||||
|                         <input type="hidden" name="_token" value="{{ csrf_token() }}"> | ||||
|                         <div class="card-body p-6"> | ||||
|                             {% if session('status') %} | ||||
|                                 <p> | ||||
|                                     {{ session('status') }} | ||||
|                                 </p> | ||||
|                             {% else %} | ||||
|                                 <div class="card-title">{{ 'reset_password'|_ }}</div> | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="form-label">{{ trans('form.email') }}</label> | ||||
|                                     <input autocomplete="email" type="email" name="email" class="{% if errors.has('email') %}is-invalid{% endif %} form-control" | ||||
|                                            placeholder="{{ trans('form.email') }}" value="{{ email }}" required> | ||||
|                                     {% if errors.has('email') %} | ||||
|                                         <div class="invalid-feedback"> | ||||
|                                             {{ errors.get('email')[0] }} | ||||
|                                         </div> | ||||
|                                     {% endif %} | ||||
|                                 </div> | ||||
|                             {% endif %} | ||||
|                             {% if not session('status') %} | ||||
|                             <div class="form-footer"> | ||||
|                                 <button type="submit" class="btn btn-primary btn-block">{{ 'reset_button'|_ }}</button> | ||||
|                             </div> | ||||
|                             {% endif %} | ||||
|                         </div> | ||||
|                     </form> | ||||
|                     <div class="text-center text-muted"> | ||||
|                         <a href="{{ route('login') }}">{{ 'want_to_login'|_ }}</a><br> | ||||
|                     </div> | ||||
|  | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| {% endblock %} | ||||
							
								
								
									
										105
									
								
								resources/views/v2/auth/passwords/reset.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										105
									
								
								resources/views/v2/auth/passwords/reset.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,105 @@ | ||||
| {% extends "./layout/auth" %} | ||||
| {% block content %} | ||||
|     <div class="page-single"> | ||||
|         <div class="container"> | ||||
|             <div class="row"> | ||||
|                 <div class="col col-login mx-auto"> | ||||
|                     <div class="text-center mb-6"> | ||||
|                         <img src="v2/assets/images/firefly-iii-48.png" class="h-6" alt="Firefly III v{{ FF_VERSION }}" title="Firefly III v{{ FF_VERSION }}"> | ||||
|                     </div> | ||||
|                     <form class="card" action="{{ route('password.reset.request') }}" method="post"> | ||||
|  | ||||
|  | ||||
|                         <input type="hidden" name="_token" value="{{ csrf_token() }}"> | ||||
|                         <input type="hidden" name="token" value="{{ token }}"> | ||||
|                         <div class="card-body p-6"> | ||||
|                             <div class="card-title">{{ 'reset_password'|_ }}</div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="form-label">{{ trans('form.email') }}</label> | ||||
|                                 <input autocomplete="email" type="email" name="email" class="{% if errors.has('email') %}is-invalid{% endif %} form-control" placeholder="{{ trans('form.email') }}" value="{{ old('email') }}" required> | ||||
|                                 {% if errors.has('email') %} | ||||
|                                     <div class="invalid-feedback"> | ||||
|                                         {{ errors.get('email')[0] }} | ||||
|                                     </div> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|  | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="form-label">{{ trans('form.password') }}</label> | ||||
|                                 <input type="password" autocomplete="password" class="{% if errors.has('password') %}is-invalid{% endif %} form-control" name="password" placeholder="{{ trans('form.password') }}" required> | ||||
|                                 {% if errors.has('password') %} | ||||
|                                     <div class="invalid-feedback"> | ||||
|                                         {{ errors.get('password')[0] }} | ||||
|                                     </div> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|  | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="form-label">{{ trans('form.password_confirmation') }}</label> | ||||
|                                 <input type="password" autocomplete="password" name="{% if errors.has('password_confirmation') %}is-invalid{% endif %} password_confirmation" class="form-control" placeholder="{{ trans('form.password_confirmation') }}" required> | ||||
|                                 {% if errors.has('password_confirmation') %} | ||||
|                                     <div class="invalid-feedback"> | ||||
|                                         {{ errors.get('password_confirmation')[0] }} | ||||
|                                     </div> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|  | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="custom-control custom-checkbox"> | ||||
|                                     <input type="checkbox" name="verify_password" value="1" checked class="custom-control-input" /> | ||||
|                                     <span class="custom-control-label"><a href="#" data-toggle="modal" data-target="#pwModal">{{ trans('form.verify_password') }}</a></span> | ||||
|                                 </label> | ||||
|                             </div> | ||||
|  | ||||
|                             <div class="form-footer"> | ||||
|                                 <button type="submit" class="btn btn-primary btn-block">{{ 'button_reset_password'|_ }}</button> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </form> | ||||
|                     <div class="text-center text-muted"> | ||||
|                         <a href="{{ route('login') }}">{{ 'want_to_login'|_ }}</a><br> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
|  | ||||
|  | ||||
|  | ||||
|     {# modal #} | ||||
|  | ||||
|     <div class="modal fade" id="pwModal" tabindex="-1" role="dialog" aria-labelledby="pwModalLabel" aria-hidden="true"> | ||||
|         <div class="modal-dialog" role="document"> | ||||
|             <div class="modal-content"> | ||||
|                 <div class="modal-header"> | ||||
|                     <h5 class="modal-title" id="exampleModalLabel">Modal title</h5> | ||||
|                     <button type="button" class="close" data-dismiss="modal" aria-label="Close"> | ||||
|                     </button> | ||||
|                 </div> | ||||
|                 <div class="modal-body"> | ||||
|                     <p> | ||||
|                         {{ 'secure_pw_history'|_ }} | ||||
|                     </p> | ||||
|                     <p> | ||||
|                         {{ 'secure_pw_ff'|_ }} | ||||
|                     </p> | ||||
|                     <p> | ||||
|                         {{ 'secure_pw_check_box'|_ }} | ||||
|                     </p> | ||||
|  | ||||
|                     <h4>{{ 'secure_pw_working_title'|_ }}</h4> | ||||
|                     <p> | ||||
|                         {{ 'secure_pw_working'|_ }} | ||||
|                     </p> | ||||
|                     <h4>{{ 'secure_pw_should'|_ }}</h4> | ||||
|                     <p> | ||||
|                         {{ 'secure_pw_long_password'|_ }} | ||||
|                     </p> | ||||
|                     </div> | ||||
|                 <div class="modal-footer"> | ||||
|                     <button type="button" class="btn btn-primary" data-dismiss="modal">{{ 'close'|_ }}</button> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| {% endblock %} | ||||
							
								
								
									
										78
									
								
								resources/views/v2/auth/register.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										78
									
								
								resources/views/v2/auth/register.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,78 @@ | ||||
| {% extends "./layout/auth" %} | ||||
| {% block content %} | ||||
|     <div class="page-single"> | ||||
|         <div class="container"> | ||||
|             <div class="row"> | ||||
|                 <div class="col col-login mx-auto"> | ||||
|                     <div class="text-center mb-6"> | ||||
|                         <img src="v2/assets/images/firefly-iii-48.png" class="h-6" alt="Firefly III v{{ FF_VERSION }}" title="Firefly III v{{ FF_VERSION }}"> | ||||
|                     </div> | ||||
|  | ||||
|                     {# ERRORS FOR REGISTER STUFF #} | ||||
|                     {% if errors.all|length > 0 %} | ||||
|                         <div class="alert alert-danger" role="alert"> | ||||
|                             {% if errors.all|length == 1 %} | ||||
|                                 <strong>{{ 'flash_error'|_ }}</strong> {{ errors.first() }} | ||||
|                             {% else %} | ||||
|                                 <strong>{{ 'flash_error'|_ }}</strong> | ||||
|                                 <ul> | ||||
|                                     {% for message in errors.all %} | ||||
|                                         <li>{{ message }}</li> | ||||
|                                     {% endfor %} | ||||
|                                 </ul> | ||||
|                             {% endif %} | ||||
|                         </div> | ||||
|                     {% endif %} | ||||
|  | ||||
|                     <form class="card" action="{{ route('register') }}" method="post"> | ||||
|                         <input type="hidden" name="_token" value="{{ csrf_token() }}"> | ||||
|                         <div class="card-body p-6"> | ||||
|                             <div class="card-title">{{ 'register_new_account'|_ }}</div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="form-label">{{ trans('form.email') }}</label> | ||||
|                                 <input autocomplete="email" type="email" name="email" class="{% if errors.has('email') %}is-invalid{% endif %} form-control" placeholder="{{ trans('form.email') }}" value="{{ email }}" required> | ||||
|                                 {% if errors.has('email') %} | ||||
|                                     <div class="invalid-feedback"> | ||||
|                                         {{ errors.get('email')[0] }} | ||||
|                                     </div> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="form-label">{{ trans('form.password') }}</label> | ||||
|                                 <input type="password" autocomplete="password" class="{% if errors.has('password') %}is-invalid{% endif %} form-control" name="password" placeholder="{{ trans('form.password') }}" required> | ||||
|                                 {% if errors.has('password') %} | ||||
|                                     <div class="invalid-feedback"> | ||||
|                                         {{ errors.get('password')[0] }} | ||||
|                                     </div> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="form-label">{{ trans('form.password_confirmation') }}</label> | ||||
|                                 <input type="password" autocomplete="password" name="{% if errors.has('password_confirmation') %}is-invalid{% endif %} password_confirmation" class="form-control" placeholder="{{ trans('form.password_confirmation') }}" required> | ||||
|                                 {% if errors.has('password_confirmation') %} | ||||
|                                     <div class="invalid-feedback"> | ||||
|                                         {{ errors.get('password_confirmation')[0] }} | ||||
|                                     </div> | ||||
|                                 {% endif %} | ||||
|                             </div> | ||||
|  | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="custom-control custom-checkbox"> | ||||
|                                     <input type="checkbox" name="verify_password" value="1" checked class="custom-control-input" /> | ||||
|                                     <span class="custom-control-label"><a href="#" data-toggle="modal" data-target="#pwModal">{{ trans('form.verify_password') }}</a></span> | ||||
|                                 </label> | ||||
|                             </div> | ||||
|  | ||||
|                             <div class="form-footer"> | ||||
|                                 <button type="submit" class="btn btn-primary btn-block">{{ 'button_register'|_ }}</button> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </form> | ||||
|                     <div class="text-center text-muted"> | ||||
|                         <a href="{{ route('login') }}">{{ 'want_to_login'|_ }}</a><br> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| {% endblock %} | ||||
							
								
								
									
										13
									
								
								resources/views/v2/emails/access-token-created-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								resources/views/v2/emails/access-token-created-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     Somebody (hopefully you) just created a new Firefly III API Access Token for your user account. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     With this token, they can access <strong>all</strong> of your financial records through the Firefly III API. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     If this wasn't you, please revoke this token as soon as possible at {{ route('profile.index') }}. | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										7
									
								
								resources/views/v2/emails/access-token-created-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								resources/views/v2/emails/access-token-created-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| Somebody (hopefully you) just created a new Firefly III API Access Token for your user account. | ||||
|  | ||||
| With this token, they can access all of your financial records through the Firefly III API. | ||||
|  | ||||
| If this wasn't you, please revoke this token as soon as possible at {{ route('profile.index') }}. | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										5
									
								
								resources/views/v2/emails/admin-test-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								resources/views/v2/emails/admin-test-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     This is a test message from your Firefly III instance. It was sent to {{ email }}. | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										3
									
								
								resources/views/v2/emails/admin-test-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								resources/views/v2/emails/admin-test-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| {% include 'emails.header-text' %} | ||||
|     This is a test message from your Firefly III instance. It was sent to {{ email }}. | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										20
									
								
								resources/views/v2/emails/confirm-account-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								resources/views/v2/emails/confirm-account-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     To start using your brand new Firefly III account, you need to activate it. Activating your account allows the website to verify that this email address is | ||||
|     valid. Unfortunately, not even the most complex routines can work this out, without actually sending an email message. And here it is! | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     To active your account please follow the link below. | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     <strong>PLEASE</strong> verify that this activation link goes to the Firefly III installation you expect it to be: | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     <a href="{{ route }}" style="color:#337ab7">{{ route }}</a> | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     You should be redirected to the index page right away. The link expires in about four hours. | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										11
									
								
								resources/views/v2/emails/confirm-account-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								resources/views/v2/emails/confirm-account-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| To start using your brand new Firefly III account, you need to activate it. Activating your account allows the website to verify that this email address is valid. Unfortunately, not even the most complex routines can work this out, without actually sending an email message. And here it is! | ||||
|  | ||||
| To active your account please follow the link below. | ||||
|  | ||||
| PLEASE verify that this activation link goes to the Firefly III installation you expect it to be: | ||||
|  | ||||
| {{ route }} | ||||
|  | ||||
| You should be redirected to the index page right away. The link expires in about four hours. | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										18
									
								
								resources/views/v2/emails/confirm-email-change-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								resources/views/v2/emails/confirm-email-change-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     You or somebody with access to your Firefly III account has changed your email address. If you did not expect this message, please ignore and delete it. | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The old email addres was: {{ oldEmail }} | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The new email address is: <strong>{{ newEmail }}</strong> | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     You cannot use Firefly III until you confirm this change. Please follow the link below to do so. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     <a href="{{ uri }}">{{ uri }}</a> | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										9
									
								
								resources/views/v2/emails/confirm-email-change-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								resources/views/v2/emails/confirm-email-change-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| You or somebody with access to your Firefly III account has changed your email address. If you did not expect this message, please ignore and delete it. | ||||
|  | ||||
| The old email addres was: {{ oldEmail }} | ||||
|  | ||||
| The new email address is: {{ newEmail }} | ||||
|  | ||||
| You cannot use Firefly III until you confirm this change. Please follow the link to do so: {{ uri }} | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										47
									
								
								resources/views/v2/emails/error-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								resources/views/v2/emails/error-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     Firefly III v{{ version }} ran into an error: <span style="font-family: monospace;">{{ errorMessage }}</span> | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The error was of type "{{ class }}". | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The error occured on/at: {{ time }}. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     This error occured in file <span style="font-family: monospace;">{{ file }}</span> on line {{ line }} with code {{ code }}. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     {% if loggedIn %} | ||||
|         The error was encountered by user #{{ user.id }}, <a href="mailto:{{ user.email }}">{{ user.email }}</a>. | ||||
|     {% else %} | ||||
|         There was no user logged in for this error or no user was detected. | ||||
|     {% endif %} | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The IP address related to this error is: {{ ip }}<br /> | ||||
|     URL is: {{ url }}<br> | ||||
|     User agent: {{ userAgent }} | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The full stacktrace is below. If you think this is a bug in Firefly III, you | ||||
|     can forward this message to | ||||
|     <a href="mailto:thegrumpydictator@gmail.com?subject=BUG!">thegrumpydictator@gmail.com</a>. | ||||
|     This can help fix the bug you just encountered. | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     If you prefer, you can also open a new issue on <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The full stacktrace is below:</p> | ||||
| <p style="font-family: monospace;font-size:11px;color:#aaa"> | ||||
|     {{ stackTrace|nl2br }} | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										31
									
								
								resources/views/v2/emails/error-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								resources/views/v2/emails/error-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,31 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| Firefly III v{{ version }} ran into an error: {{ errorMessage }}. | ||||
|  | ||||
| The error was of type "{{ class }}". | ||||
|  | ||||
| The error occured on/at: {{ time }}. | ||||
|  | ||||
| This error occured in file "{{ file }}" on line {{ line }} with code {{ code }}. | ||||
|  | ||||
| {% if loggedIn %} | ||||
|     The error was encountered by user #{{ user.id }}, {{ user.email }}. | ||||
| {% else %} | ||||
|     There was no user logged in for this error or no user was detected. | ||||
| {% endif %} | ||||
|  | ||||
| The IP address related to this error is: {{ ip }} | ||||
| URL is: {{ url }} | ||||
| User agent: {{ userAgent }} | ||||
|  | ||||
| The full stacktrace is below. If you think this is a bug in Firefly III, you | ||||
| can forward this message to thegrumpydictator@gmail.com. This can help fix | ||||
| the bug you just encountered. | ||||
|  | ||||
| If you prefer, you can also open a new issue here: | ||||
|  | ||||
| https://github.com/firefly-iii/firefly-iii/issues | ||||
|  | ||||
| The full stacktrace is below: | ||||
|  | ||||
| {{ stackTrace }} | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										13
									
								
								resources/views/v2/emails/footer-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								resources/views/v2/emails/footer-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     Beep boop, | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The Firefly III Mail Robot | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:11px;color:#aaa;"> | ||||
|     PS: This message was sent because a request from IP {{ ip }}{{ userIp }}{{ ipAddress }} triggered it. | ||||
| </p> | ||||
|  | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										6
									
								
								resources/views/v2/emails/footer-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								resources/views/v2/emails/footer-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,6 @@ | ||||
|  | ||||
| Beep boop, | ||||
|  | ||||
| The Firefly III Mail Robot | ||||
|  | ||||
| PS: This message was sent because a request from IP {{ ip }}{{ userIp }}{{ ipAddress }} triggered it. | ||||
							
								
								
									
										10
									
								
								resources/views/v2/emails/header-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								resources/views/v2/emails/header-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| <!DOCTYPE html> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml"> | ||||
| <head> | ||||
|     <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"> | ||||
|  | ||||
| </head> | ||||
| <body> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     Hi there, | ||||
| </p> | ||||
							
								
								
									
										2
									
								
								resources/views/v2/emails/header-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								resources/views/v2/emails/header-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| Hi there, | ||||
|  | ||||
							
								
								
									
										14
									
								
								resources/views/v2/emails/oauth-client-created-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								resources/views/v2/emails/oauth-client-created-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     Somebody (hopefully you) just created a new Firefly III API OAuth Client for your user account. It's labeled "{{ client.name }}" | ||||
|     and has callback URL <span style="font-family: monospace;">{{ client.redirect }}</span>. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     With this client, they can access <strong>all</strong> of your financial records through the Firefly III API. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     If this wasn't you, please revoke this client as soon as possible at {{ route('profile.index') }}. | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										9
									
								
								resources/views/v2/emails/oauth-client-created-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								resources/views/v2/emails/oauth-client-created-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| Somebody (hopefully you) just created a new Firefly III API OAuth Client for your user account. It's labeled "{{ client.name }}" and has callback URL: | ||||
|  | ||||
| {{ client.redirect }} | ||||
|  | ||||
| With this client, they can access <strong>all</strong> of your financial records through the Firefly III API. | ||||
|  | ||||
| If this wasn't you, please revoke this client as soon as possible at {{ route('profile.index') }}. | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										13
									
								
								resources/views/v2/emails/password-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								resources/views/v2/emails/password-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     Somebody tried to reset your password. If it was you, please follow the link below to do so. | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     <strong>PLEASE</strong> verify that the link actually goes to the Firefly III you expect it to go! | ||||
| </p> | ||||
|  | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     <a href="{{ url }}">{{ url }}</a> | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										7
									
								
								resources/views/v2/emails/password-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								resources/views/v2/emails/password-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| Somebody tried to reset your password. If it was you, please follow the link below to do so. | ||||
|  | ||||
| PLEASE verify that the link actually goes to the Firefly III you expect it to go! | ||||
|  | ||||
| {{ url }} | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										18
									
								
								resources/views/v2/emails/registered-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								resources/views/v2/emails/registered-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     Welkome to <a style="color:#337ab7" href="{{ address }}">Firefly III</a>. Your registration has made it, and this email is here to confirm it. Yay! | ||||
| </p> | ||||
|  | ||||
| <ul> | ||||
|     <li style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|         If you have forgotten your password already, please reset it using | ||||
|         <a style="color:#337ab7" href="{{ address }}/password/reset">the password reset tool</a>. | ||||
|     </li> | ||||
|     <li style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|         There is a help-icon in the top right corner of each page. If you need help, click it! | ||||
|     </li> | ||||
|     <li style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|         If you haven't already, please read the <a style="color:#337ab7" href="https://firefly-iii.org/description/">full description</a>. | ||||
|     </li> | ||||
| </ul> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										20
									
								
								resources/views/v2/emails/registered-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								resources/views/v2/emails/registered-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| Welkome to Firefly III. Your registration has made it, and this email is here to confirm it. Yay! | ||||
|  | ||||
| * If you have forgotten your password already, please reset it using the password reset tool. | ||||
| * There is a help-icon in the top right corner of each page. If you need help, click it! | ||||
| * If you haven't already, please read the first use guide and the full description. | ||||
|  | ||||
| Enjoy! | ||||
|  | ||||
| Firefly III: | ||||
| {{ address }} | ||||
|  | ||||
| Password reset: | ||||
| {{ address }}/password/reset | ||||
|  | ||||
| Documentation: | ||||
| https://github.com/firefly-iii/firefly-iii | ||||
| https://firefly-iii.org/ | ||||
|  | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										34
									
								
								resources/views/v2/emails/report-new-journals-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								resources/views/v2/emails/report-new-journals-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,34 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     {% if journals.count == 1 %} | ||||
|         Firefly III has created a transaction for you. | ||||
|     {% endif %} | ||||
|     {% if journals.count > 1 %} | ||||
|         Firefly III has created {{ journals.count }} transactions for you. | ||||
|     {% endif %} | ||||
| </p> | ||||
|  | ||||
|  | ||||
| {% if journals.count == 1 %} | ||||
|     <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|         You can find it in your Firefly III installation:<br /> | ||||
|         {% for journal in journals %} | ||||
|             <a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> ({{ journal|journalTotalAmount }}) | ||||
|         {% endfor %} | ||||
|     </p> | ||||
| {% endif %} | ||||
|  | ||||
| {% if journals.count > 1 %} | ||||
|     <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|         You can find them in your Firefly III installation: | ||||
|     </p> | ||||
|     <ul> | ||||
|         {% for journal in journals %} | ||||
|             <li> | ||||
|                 <a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> ({{ journal|journalTotalAmount }}) | ||||
|             </li> | ||||
|         {% endfor %} | ||||
|     </ul> | ||||
| {% endif %} | ||||
|  | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										25
									
								
								resources/views/v2/emails/report-new-journals-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								resources/views/v2/emails/report-new-journals-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| {% if journals.count == 1 %} | ||||
| Firefly III has created a transaction for you. | ||||
|  | ||||
| {% endif %} | ||||
| {% if journals.count > 1 %} | ||||
| Firefly III has created {{ journals.count }} transactions for you. | ||||
| {% endif %} | ||||
| {% if journals.count == 1 %} | ||||
| You can find in in your Firefly III installation: | ||||
|  | ||||
| {% for journal in journals %} | ||||
| {{ journal.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }}) | ||||
| {% endfor %} | ||||
| {% endif %} | ||||
|  | ||||
| {% if journals.count > 1 %} | ||||
| You can find them in your Firefly III installation: | ||||
|  | ||||
| {% for journal in journals %} | ||||
| - {{ journal.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }}) | ||||
| {% endfor %} | ||||
| {% endif %} | ||||
|  | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										18
									
								
								resources/views/v2/emails/undo-email-change-html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								resources/views/v2/emails/undo-email-change-html.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| {% include 'emails.header-html' %} | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     You or somebody with access to your Firefly III account has changed your email address. | ||||
|     If you did not expect this to happen, you <strong>must</strong> follow the "undo"-link below to protect your account! | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     If you initiated this change, you may safely ignore this message. | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The old email addres was: <strong>{{ oldEmail }}</strong> | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     The new email address is: {{ newEmail }} | ||||
| </p> | ||||
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;"> | ||||
|     To undo the change, follow this link: <a href="{{ uri }}">{{ uri }}</a> | ||||
| </p> | ||||
| {% include 'emails.footer-html' %} | ||||
							
								
								
									
										12
									
								
								resources/views/v2/emails/undo-email-change-text.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								resources/views/v2/emails/undo-email-change-text.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| {% include 'emails.header-text' %} | ||||
| You or somebody with access to your Firefly III account has changed your email address. If you did not expect this to happen, | ||||
| you must follow the "undo"-link below to protect your account! | ||||
|  | ||||
| If you initiated this change, you may safely ignore this message. | ||||
|  | ||||
| The old email addres was: {{ oldEmail }} | ||||
|  | ||||
| The new email address is: {{ newEmail }} | ||||
|  | ||||
| To undo the change, follow this link: {{ uri }} | ||||
| {% include 'emails.footer-text' %} | ||||
							
								
								
									
										35
									
								
								resources/views/v2/error.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								resources/views/v2/error.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,35 @@ | ||||
| <!doctype html> | ||||
| <html lang="en" dir="ltr"> | ||||
| <head> | ||||
|     <meta charset="UTF-8"> | ||||
|     <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||||
|     <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||||
|     <meta http-equiv="Content-Language" content="en" /> | ||||
|     {# favicons #} | ||||
|     {% include('partials.favicons') %} | ||||
|     <link rel="icon" href="./favicon.ico" type="image/x-icon"/> | ||||
|     <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" /> | ||||
|     <!-- Generated: 2018-04-16 09:29:05 +0200 --> | ||||
|     <title>500</title> | ||||
|     <link rel="stylesheet" href="v2/lib/font-awesome/4.7.0/css/font-awesome.min.css?v={{ FF_VERSION }}"> | ||||
|     <link rel="stylesheet" href="v2/assets/css/gf-source.css?v={{ FF_VERSION }}"> | ||||
|     <link href="v2/assets/css/dashboard.css" rel="stylesheet" /> | ||||
| </head> | ||||
| <body class=""> | ||||
| <div class="page"> | ||||
|     <div class="page-content"> | ||||
|         <div class="container text-center"> | ||||
|             <div class="display-1 text-muted mb-5">Firefly III error</div> | ||||
|             <h1 class="h2 mb-3">{{ message |default('General unknown errror')|raw }}</h1> | ||||
|             <p class="h4 text-muted font-weight-normal mb-7"> | ||||
|                 If you do not know how to handle this error, please open an issue on | ||||
|                 <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a> | ||||
|                 or <a href="mailto:thegrumpydictator@gmail.com">send me a message</a>.</p> | ||||
|             <a class="btn btn-primary" href="javascript:history.back()"> | ||||
|                 <i class="fe fe-arrow-left mr-2"></i>Go back | ||||
|             </a> | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
| </body> | ||||
| </html> | ||||
| @@ -0,0 +1,29 @@ | ||||
| <!doctype html> | ||||
| <html lang="en" dir="ltr"> | ||||
| <head> | ||||
|     <base href="{{ route('index') }}/"> | ||||
|     <meta charset="UTF-8"> | ||||
|     <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||||
|     <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||||
|     <meta http-equiv="Content-Language" content="en"/> | ||||
|  | ||||
|     {# favicons #} | ||||
|     {% include('partials.favicons') %} | ||||
|  | ||||
|     <title>{{ pageTitle|default('Firefly III') }} (v{{ FF_VERSION }})</title> | ||||
|     <link rel="stylesheet" href="v2/lib/font-awesome/4.7.0/css/font-awesome.min.css"> | ||||
|     <link rel="stylesheet" href="v2/assets/css/gf-source.css"> | ||||
|     <link href="v2/assets/css/dashboard.css" rel="stylesheet"/> | ||||
| </head> | ||||
| <body> | ||||
| <div class="page"> | ||||
|     {% block content %}{% endblock %} | ||||
|  | ||||
|     <script src="v2/assets/js/vendors/jquery-3.2.1.min.js"></script> | ||||
|     <script src="v2/assets/js/vendors/bootstrap.bundle.min.js"></script> | ||||
|  | ||||
|     {# favicons #} | ||||
|     {% include('partials.password_modal') %} | ||||
| </div> | ||||
| </body> | ||||
| </html> | ||||
| @@ -7,19 +7,9 @@ | ||||
|     <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||||
|     <meta http-equiv="Content-Language" content="en" /> | ||||
|  | ||||
|     {# favicons #} | ||||
|     {% include('partials.favicons') %} | ||||
|  | ||||
|  | ||||
|  | ||||
|     <meta name="msapplication-TileColor" content="#2d89ef"> | ||||
|     <meta name="theme-color" content="#4188c9"> | ||||
|     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> | ||||
|     <meta name="apple-mobile-web-app-capable" content="yes"> | ||||
|     <meta name="mobile-web-app-capable" content="yes"> | ||||
|     <meta name="HandheldFriendly" content="True"> | ||||
|     <meta name="MobileOptimized" content="320"> | ||||
|     <link rel="icon" href="./favicon.ico" type="image/x-icon"/> | ||||
|     <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" /> | ||||
|     <!-- Generated: 2018-04-16 09:29:05 +0200 --> | ||||
|     <title> | ||||
|         {% if subTitle %} | ||||
|             {{ subTitle }} » | ||||
|   | ||||
| @@ -8,4 +8,9 @@ | ||||
| <meta name="application-name" content="Firefly III"> | ||||
| <meta name="msapplication-TileColor" content="#2d89ef"> | ||||
| <meta name="msapplication-TileImage" content="/mstile-144x144.png?v=3e8AboOwbd"> | ||||
| <meta name="theme-color" content="#ffffff"> | ||||
| <meta name="theme-color" content="#ffffff"> | ||||
| <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> | ||||
| <meta name="apple-mobile-web-app-capable" content="yes"> | ||||
| <meta name="mobile-web-app-capable" content="yes"> | ||||
| <meta name="HandheldFriendly" content="True"> | ||||
| <meta name="MobileOptimized" content="320"> | ||||
							
								
								
									
										35
									
								
								resources/views/v2/partials/password_modal.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								resources/views/v2/partials/password_modal.twig
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,35 @@ | ||||
| {# modal #} | ||||
| <div class="modal fade" id="pwModal" tabindex="-1" role="dialog" aria-labelledby="pwModalLabel" aria-hidden="true"> | ||||
|     <div class="modal-dialog" role="document"> | ||||
|         <div class="modal-content"> | ||||
|             <div class="modal-header"> | ||||
|                 <h5 class="modal-title" id="exampleModalLabel">Modal title</h5> | ||||
|                 <button type="button" class="close" data-dismiss="modal" aria-label="Close"> | ||||
|                 </button> | ||||
|             </div> | ||||
|             <div class="modal-body"> | ||||
|                 <p> | ||||
|                     {{ 'secure_pw_history'|_ }} | ||||
|                 </p> | ||||
|                 <p> | ||||
|                     {{ 'secure_pw_ff'|_ }} | ||||
|                 </p> | ||||
|                 <p> | ||||
|                     {{ 'secure_pw_check_box'|_ }} | ||||
|                 </p> | ||||
|  | ||||
|                 <h4>{{ 'secure_pw_working_title'|_ }}</h4> | ||||
|                 <p> | ||||
|                     {{ 'secure_pw_working'|_ }} | ||||
|                 </p> | ||||
|                 <h4>{{ 'secure_pw_should'|_ }}</h4> | ||||
|                 <p> | ||||
|                     {{ 'secure_pw_long_password'|_ }} | ||||
|                 </p> | ||||
|             </div> | ||||
|             <div class="modal-footer"> | ||||
|                 <button type="button" class="btn btn-primary" data-dismiss="modal">{{ 'close'|_ }}</button> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
		Reference in New Issue
	
	Block a user