feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'パスワードリセット',
|
||||
|
||||
'heading' => 'パスワードをお忘れですか?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'ログインへ戻る',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'メールアドレス',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'メールを送信',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'アカウントが存在しない場合、メールは届きません。',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'リクエストが多すぎます',
|
||||
'body' => ':seconds 秒後に再試行してください。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'パスワードリセット',
|
||||
|
||||
'heading' => 'パスワードをリセット',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'メールアドレス',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'パスワード',
|
||||
'validation_attribute' => 'パスワード',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'パスワードの確認',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'パスワードをリセット',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'リセットの試行回数が多すぎます',
|
||||
'body' => ':seconds 秒後に再試行してください。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user