This commit is contained in:
NaggaDIM
2025-01-02 00:05:09 +03:00
parent 2d071320a3
commit 277a5d5a31
16 changed files with 297 additions and 397 deletions

View File

@@ -31,7 +31,7 @@ const submit = () => {
<template>
<GuestLayout>
<Head title="Log in" />
<Head title="Вход" />
<div v-if="status" class="mb-4 text-sm font-medium text-green-600">
{{ status }}
@@ -39,7 +39,7 @@ const submit = () => {
<form @submit.prevent="submit">
<div>
<InputLabel for="email" value="Email" />
<InputLabel for="email" value="E-Mail" />
<TextInput
id="email"
@@ -55,7 +55,7 @@ const submit = () => {
</div>
<div class="mt-4">
<InputLabel for="password" value="Password" />
<InputLabel for="password" value="Пароль" />
<TextInput
id="password"
@@ -73,7 +73,7 @@ const submit = () => {
<label class="flex items-center">
<Checkbox name="remember" v-model:checked="form.remember" />
<span class="ms-2 text-sm text-gray-600 dark:text-gray-400"
>Remember me</span
>Запомнить меня</span
>
</label>
</div>
@@ -84,7 +84,7 @@ const submit = () => {
:href="route('password.request')"
class="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 dark:text-gray-400 dark:hover:text-gray-100 dark:focus:ring-offset-gray-800"
>
Forgot your password?
Забыли пароль?
</Link>
<PrimaryButton
@@ -92,7 +92,7 @@ const submit = () => {
:class="{ 'opacity-25': form.processing }"
:disabled="form.processing"
>
Log in
Вход
</PrimaryButton>
</div>
</form>

View File

@@ -22,11 +22,11 @@ const submit = () => {
<template>
<GuestLayout>
<Head title="Register" />
<Head title="Регистрация" />
<form @submit.prevent="submit">
<div>
<InputLabel for="name" value="Name" />
<InputLabel for="name" value="Имя" />
<TextInput
id="name"
@@ -42,7 +42,7 @@ const submit = () => {
</div>
<div class="mt-4">
<InputLabel for="email" value="Email" />
<InputLabel for="email" value="E-Mail" />
<TextInput
id="email"
@@ -57,7 +57,7 @@ const submit = () => {
</div>
<div class="mt-4">
<InputLabel for="password" value="Password" />
<InputLabel for="password" value="Пароль" />
<TextInput
id="password"
@@ -74,7 +74,7 @@ const submit = () => {
<div class="mt-4">
<InputLabel
for="password_confirmation"
value="Confirm Password"
value="Подтверждение пароля"
/>
<TextInput
@@ -97,7 +97,7 @@ const submit = () => {
:href="route('login')"
class="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 dark:text-gray-400 dark:hover:text-gray-100 dark:focus:ring-offset-gray-800"
>
Already registered?
Уже зарегистрированы?
</Link>
<PrimaryButton
@@ -105,7 +105,7 @@ const submit = () => {
:class="{ 'opacity-25': form.processing }"
:disabled="form.processing"
>
Register
Регистрация
</PrimaryButton>
</div>
</form>