mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
121 lines
4.6 KiB
Vue
121 lines
4.6 KiB
Vue
<template>
|
|
<div class="min-h-screen bg-gradient-to-br from-purple-600 to-indigo-500 flex items-center justify-center p-4">
|
|
<div class="max-w-md w-full bg-white rounded-xl shadow-2xl p-8">
|
|
<div class="text-center mb-8">
|
|
<h2 class="text-3xl font-bold text-gray-900">
|
|
Панель администратора
|
|
</h2>
|
|
<p class="mt-2 text-gray-600">
|
|
Вход в систему управления
|
|
</p>
|
|
</div>
|
|
|
|
<form @submit.prevent="handleLogin" class="space-y-6">
|
|
<div>
|
|
<label for="username" class="block text-sm font-medium text-gray-700">
|
|
Имя пользователя
|
|
</label>
|
|
<div class="mt-1">
|
|
<input
|
|
id="username"
|
|
v-model="username"
|
|
name="username"
|
|
type="text"
|
|
required
|
|
class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm placeholder-gray-400 focus:outline-none focus:ring-purple-500 focus:border-purple-500"
|
|
placeholder="Введите имя пользователя"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="password" class="block text-sm font-medium text-gray-700">
|
|
Пароль
|
|
</label>
|
|
<div class="mt-1">
|
|
<input
|
|
id="password"
|
|
v-model="password"
|
|
name="password"
|
|
type="password"
|
|
required
|
|
class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm placeholder-gray-400 focus:outline-none focus:ring-purple-500 focus:border-purple-500"
|
|
placeholder="Введите пароль"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<button
|
|
type="submit"
|
|
class="w-full flex justify-center py-3 px-4 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 transition-colors duration-200"
|
|
:class="{ 'opacity-75 cursor-not-allowed': loading }"
|
|
:disabled="loading"
|
|
>
|
|
<span v-if="loading">
|
|
<svg class="animate-spin -ml-1 mr-3 h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
|
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
</svg>
|
|
Вход...
|
|
</span>
|
|
<span v-else>Войти в панель управления</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div v-if="error" class="rounded-lg bg-red-50 p-4 text-sm text-red-700">
|
|
{{ error }}
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
<router-link
|
|
to="/"
|
|
class="text-sm text-purple-600 hover:text-purple-500"
|
|
>
|
|
Вернуться на главную
|
|
</router-link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
import axios from 'axios'
|
|
|
|
const router = useRouter()
|
|
const username = ref('')
|
|
const password = ref('')
|
|
const loading = ref(false)
|
|
const error = ref('')
|
|
|
|
const handleLogin = async () => {
|
|
loading.value = true
|
|
error.value = ''
|
|
|
|
try {
|
|
console.log('Отправка запроса на авторизацию админа...')
|
|
const formData = new FormData()
|
|
formData.append('username', username.value)
|
|
formData.append('password', password.value)
|
|
|
|
const response = await axios.post('/api/auth/admin/login', formData)
|
|
console.log('Ответ от сервера:', response.data)
|
|
|
|
// Сохраняем токен администратора
|
|
localStorage.setItem('admin_token', response.data.access_token)
|
|
localStorage.setItem('is_admin', 'true')
|
|
|
|
console.log('Перенаправление на панель администратора...')
|
|
// Перенаправляем на панель администратора
|
|
await router.push('/admin/dashboard')
|
|
} catch (e: any) {
|
|
console.error('Ошибка при авторизации:', e)
|
|
error.value = e.response?.data?.detail || 'Неверное имя пользователя или пароль'
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
</script> |