[WIP] Refactor project

This commit is contained in:
Ludovic CANDELLIER
2021-05-21 00:21:05 +02:00
parent 4ce0fa942d
commit b50f50ea62
347 changed files with 14104 additions and 1608 deletions

View File

@@ -0,0 +1,41 @@
<?php
return [
'fields' => [
'last_name' => 'Last name',
'first_name' => 'First name',
'email' => 'E-mail',
'password' => 'Password',
'password_confirm' => 'Password confirmation',
],
'password' => [
'title' => 'Forgotten password',
'intro' => 'Enter the following field to reset your password',
'submit' => 'Send reset link',
'login_link' => 'Sign in with an existing user',
],
'password_reset' => [
'title' => 'Password reset',
'intro' => 'Enter the following fields to reset your password',
'submit' => 'Reset',
],
'register' => [
'title' => 'Register a new user',
'intro' => 'Enter the following fields to create a new user',
'register_button' => 'Register',
'login_link' => 'Sign in with an existing user',
],
'login' => [
'title' => 'Login',
'intro' => 'Sign in to start your session',
'rememberme' => 'Remember me',
'signin' => 'Sign in',
'forgotpassword' => 'I forgot my password',
'register' => 'Register a new user',
],
'firstlogin' => [
'title' => 'First login',
'intro' => 'This is your first login, please enter a password to activate your account.',
'button' => 'Login',
],
];