mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-15 06:08:16 +00:00
@@ -220,7 +220,7 @@ class LoginController extends Controller
|
|||||||
*
|
*
|
||||||
* @throws FireflyException
|
* @throws FireflyException
|
||||||
*/
|
*/
|
||||||
public function showLoginForm(?Request $request = null)
|
public function showLoginForm(Request $request)
|
||||||
{
|
{
|
||||||
Log::channel('audit')->info('Show login form (1.1).');
|
Log::channel('audit')->info('Show login form (1.1).');
|
||||||
|
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ class RegisterController extends Controller
|
|||||||
*
|
*
|
||||||
* @throws FireflyException
|
* @throws FireflyException
|
||||||
*/
|
*/
|
||||||
public function showRegistrationForm(?Request $request = null)
|
public function showRegistrationForm(Request $request)
|
||||||
{
|
{
|
||||||
$isDemoSite = app('fireflyconfig')->get('is_demo_site', config('firefly.configuration.is_demo_site'))->data;
|
$isDemoSite = app('fireflyconfig')->get('is_demo_site', config('firefly.configuration.is_demo_site'))->data;
|
||||||
$pageTitle = (string) trans('firefly.register_page_title');
|
$pageTitle = (string) trans('firefly.register_page_title');
|
||||||
|
|||||||
@@ -15,10 +15,10 @@
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="{{ activeRoutePartial('bills') }}">
|
<li class="{{ activeRoutePartial('subscriptions') }}">
|
||||||
<a href="{{ route('subscriptions.index') }}">
|
<a href="{{ route('subscriptions.index') }}">
|
||||||
<em class="fa fa-calendar-o fa-fw"></em>
|
<em class="fa fa-calendar-o fa-fw"></em>
|
||||||
<span>{{ 'bills'|_ }}</span>
|
<span>{{ 'subscriptions'|_ }}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user