mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-22 16:43:35 +00:00
200 lines
7.0 KiB
Vue
200 lines
7.0 KiB
Vue
<template>
|
|
<div
|
|
class="relative flex min-h-screen items-center justify-center bg-gray-50 px-4 py-12 dark:bg-gray-900 sm:px-6 lg:px-8"
|
|
>
|
|
<!-- 主题切换按钮 -->
|
|
<div class="fixed right-4 top-4 z-10">
|
|
<ThemeToggle mode="dropdown" />
|
|
</div>
|
|
|
|
<div class="w-full max-w-md space-y-8">
|
|
<div>
|
|
<div class="mx-auto flex h-12 w-auto items-center justify-center">
|
|
<svg
|
|
class="h-8 w-8 text-blue-600 dark:text-blue-400"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
/>
|
|
</svg>
|
|
<span class="ml-2 text-xl font-bold text-gray-900 dark:text-white">Claude Relay</span>
|
|
</div>
|
|
<h2 class="mt-6 text-center text-3xl font-extrabold text-gray-900 dark:text-white">
|
|
User Sign In
|
|
</h2>
|
|
<p class="mt-2 text-center text-sm text-gray-600 dark:text-gray-400">
|
|
Sign in to your account to manage your API keys
|
|
</p>
|
|
</div>
|
|
|
|
<div class="rounded-lg bg-white px-6 py-8 shadow dark:bg-gray-800 dark:shadow-xl">
|
|
<form class="space-y-6" @submit.prevent="handleLogin">
|
|
<div>
|
|
<label
|
|
class="block text-sm font-medium text-gray-700 dark:text-gray-300"
|
|
for="username"
|
|
>
|
|
Username
|
|
</label>
|
|
<div class="mt-1">
|
|
<input
|
|
id="username"
|
|
v-model="form.username"
|
|
class="relative block w-full appearance-none rounded-md border border-gray-300 px-3 py-2 text-gray-900 placeholder-gray-500 focus:z-10 focus:border-blue-500 focus:outline-none focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-blue-400 dark:focus:ring-blue-400 sm:text-sm"
|
|
:disabled="loading"
|
|
name="username"
|
|
placeholder="Enter your username"
|
|
required
|
|
type="text"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label
|
|
class="block text-sm font-medium text-gray-700 dark:text-gray-300"
|
|
for="password"
|
|
>
|
|
Password
|
|
</label>
|
|
<div class="mt-1">
|
|
<input
|
|
id="password"
|
|
v-model="form.password"
|
|
class="relative block w-full appearance-none rounded-md border border-gray-300 px-3 py-2 text-gray-900 placeholder-gray-500 focus:z-10 focus:border-blue-500 focus:outline-none focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-blue-400 dark:focus:ring-blue-400 sm:text-sm"
|
|
:disabled="loading"
|
|
name="password"
|
|
placeholder="Enter your password"
|
|
required
|
|
type="password"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
v-if="error"
|
|
class="rounded-md border border-red-200 bg-red-50 p-4 dark:border-red-800 dark:bg-red-900/20"
|
|
>
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<svg class="h-5 w-5 text-red-400" fill="currentColor" viewBox="0 0 20 20">
|
|
<path
|
|
clip-rule="evenodd"
|
|
d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z"
|
|
fill-rule="evenodd"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div class="ml-3">
|
|
<p class="text-sm text-red-700 dark:text-red-400">{{ error }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<button
|
|
class="group relative flex w-full justify-center rounded-md border border-transparent bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 dark:bg-blue-500 dark:hover:bg-blue-600 dark:focus:ring-blue-400 dark:focus:ring-offset-gray-800"
|
|
:disabled="loading || !form.username || !form.password"
|
|
type="submit"
|
|
>
|
|
<span v-if="loading" class="absolute inset-y-0 left-0 flex items-center pl-3">
|
|
<svg
|
|
class="h-5 w-5 animate-spin text-white"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
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"
|
|
fill="currentColor"
|
|
></path>
|
|
</svg>
|
|
</span>
|
|
{{ loading ? 'Signing In...' : 'Sign In' }}
|
|
</button>
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
<router-link
|
|
class="text-sm text-blue-600 hover:text-blue-500 dark:text-blue-400 dark:hover:text-blue-300"
|
|
to="/admin-login"
|
|
>
|
|
Admin Login
|
|
</router-link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, reactive, onMounted } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
import { useUserStore } from '@/stores/user'
|
|
import { useThemeStore } from '@/stores/theme'
|
|
import { showToast } from '@/utils/toast'
|
|
import ThemeToggle from '@/components/common/ThemeToggle.vue'
|
|
|
|
const router = useRouter()
|
|
const userStore = useUserStore()
|
|
const themeStore = useThemeStore()
|
|
|
|
const loading = ref(false)
|
|
const error = ref('')
|
|
|
|
const form = reactive({
|
|
username: '',
|
|
password: ''
|
|
})
|
|
|
|
const handleLogin = async () => {
|
|
if (!form.username || !form.password) {
|
|
error.value = 'Please enter both username and password'
|
|
return
|
|
}
|
|
|
|
loading.value = true
|
|
error.value = ''
|
|
|
|
try {
|
|
await userStore.login({
|
|
username: form.username,
|
|
password: form.password
|
|
})
|
|
|
|
showToast('Login successful!', 'success')
|
|
router.push('/user-dashboard')
|
|
} catch (err) {
|
|
console.error('Login error:', err)
|
|
error.value = err.response?.data?.message || err.message || 'Login failed'
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
// 初始化主题(因为该页面不在 MainLayout 内)
|
|
themeStore.initTheme()
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* 组件特定样式 */
|
|
</style>
|