You've already forked Epicnabbo-Catalogus-Updated-Daily
43 lines
685 B
PHP
43 lines
685 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'title' => 'Login',
|
|
|
|
'heading' => 'Sign in to your account',
|
|
|
|
'buttons' => [
|
|
|
|
'submit' => [
|
|
'label' => 'Sign in',
|
|
],
|
|
|
|
],
|
|
|
|
'fields' => [
|
|
|
|
'email' => [
|
|
'label' => 'Email address',
|
|
],
|
|
|
|
'username' => [
|
|
'label' => 'Username'
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Password',
|
|
],
|
|
|
|
'remember' => [
|
|
'label' => 'Remember me',
|
|
],
|
|
|
|
],
|
|
|
|
'messages' => [
|
|
'failed' => 'These credentials do not match our records.',
|
|
'throttled' => 'Too many login attempts. Please try again in :seconds seconds.',
|
|
],
|
|
|
|
];
|