Convert 90 inline SVG icons to use the shared $icon() helper function across shop and vendor templates for consistency and maintainability. Templates updated: - Shop: checkout, products, login, register, forgot/reset-password - Shop account: addresses, dashboard, messages, order-detail, orders, profile - Vendor: billing, login, onboarding, team, landing pages (4 variants) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
160 lines
9.5 KiB
HTML
160 lines
9.5 KiB
HTML
{# app/templates/vendor/login.html #}
|
|
<!DOCTYPE html>
|
|
<html :class="{ 'dark': dark }" x-data="vendorLogin()" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vendor Login - Multi-Tenant Platform</title>
|
|
<!-- Fonts: Local fallback + Google Fonts -->
|
|
<link href="/static/shared/fonts/inter.css" rel="stylesheet" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="{{ url_for('static', path='vendor/css/tailwind.output.css') }}" />
|
|
<style>
|
|
[x-cloak] { display: none !important; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="flex items-center min-h-screen p-6 bg-gray-50 dark:bg-gray-900" x-cloak>
|
|
<div class="flex-1 h-full max-w-4xl mx-auto overflow-hidden bg-white rounded-lg shadow-xl dark:bg-gray-800">
|
|
<div class="flex flex-col overflow-y-auto md:flex-row">
|
|
<div class="h-32 md:h-auto md:w-1/2">
|
|
<img aria-hidden="true" class="object-cover w-full h-full dark:hidden"
|
|
src="{{ url_for('static', path='vendor/img/login-office.jpeg') }}" alt="Office" />
|
|
<img aria-hidden="true" class="hidden object-cover w-full h-full dark:block"
|
|
src="{{ url_for('static', path='vendor/img/login-office-dark.jpeg') }}" alt="Office" />
|
|
</div>
|
|
<div class="flex items-center justify-center p-6 sm:p-12 md:w-1/2">
|
|
<div class="w-full">
|
|
<!-- Vendor Info -->
|
|
<template x-if="vendor">
|
|
<div class="mb-6 text-center">
|
|
<div class="inline-flex items-center justify-center w-16 h-16 mb-4 rounded-full bg-purple-100 dark:bg-purple-600">
|
|
<span class="text-2xl font-bold text-purple-600 dark:text-purple-100"
|
|
x-text="vendor.name?.charAt(0).toUpperCase() || '🏪'"></span>
|
|
</div>
|
|
<h2 class="text-xl font-semibold text-gray-700 dark:text-gray-200" x-text="vendor.name"></h2>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">
|
|
<strong x-text="vendor.vendor_code"></strong>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<h1 class="mb-4 text-xl font-semibold text-gray-700 dark:text-gray-200">
|
|
Vendor Portal Login
|
|
</h1>
|
|
|
|
<!-- Alert Messages -->
|
|
<div x-show="error" x-text="error"
|
|
class="px-4 py-3 mb-4 text-sm text-red-700 bg-red-100 rounded-lg dark:bg-red-200 dark:text-red-800"
|
|
x-transition></div>
|
|
|
|
<div x-show="success" x-text="success"
|
|
class="px-4 py-3 mb-4 text-sm text-green-700 bg-green-100 rounded-lg dark:bg-green-200 dark:text-green-800"
|
|
x-transition></div>
|
|
|
|
<!-- Login Form (only show if vendor found) -->
|
|
<template x-if="vendor">
|
|
<form @submit.prevent="handleLogin">
|
|
<label class="block text-sm">
|
|
<span class="text-gray-700 dark:text-gray-400">Username</span>
|
|
<input x-model="credentials.username"
|
|
:disabled="loading"
|
|
@input="clearErrors"
|
|
class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
|
|
:class="{ 'border-red-600': errors.username }"
|
|
placeholder="Enter your username"
|
|
autocomplete="username"
|
|
required />
|
|
<span x-show="errors.username" x-text="errors.username"
|
|
class="text-xs text-red-600 dark:text-red-400"></span>
|
|
</label>
|
|
|
|
<label class="block mt-4 text-sm">
|
|
<span class="text-gray-700 dark:text-gray-400">Password</span>
|
|
<input x-model="credentials.password"
|
|
:disabled="loading"
|
|
@input="clearErrors"
|
|
class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
|
|
:class="{ 'border-red-600': errors.password }"
|
|
placeholder="***************"
|
|
type="password"
|
|
autocomplete="current-password"
|
|
required />
|
|
<span x-show="errors.password" x-text="errors.password"
|
|
class="text-xs text-red-600 dark:text-red-400"></span>
|
|
</label>
|
|
|
|
<button type="submit" :disabled="loading"
|
|
class="block w-full px-4 py-2 mt-4 text-sm font-medium leading-5 text-center text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple disabled:opacity-50 disabled:cursor-not-allowed">
|
|
<span x-show="!loading">Sign in</span>
|
|
<span x-show="loading" class="flex items-center justify-center">
|
|
<span class="inline w-4 h-4 mr-2" x-html="$icon('spinner', 'w-4 h-4 animate-spin')"></span>
|
|
Signing in...
|
|
</span>
|
|
</button>
|
|
</form>
|
|
</template>
|
|
|
|
<!-- Vendor Not Found -->
|
|
<template x-if="!vendor && !loading && checked">
|
|
<div class="text-center py-8">
|
|
<div class="text-6xl mb-4">🏪</div>
|
|
<h3 class="text-lg font-semibold text-gray-700 dark:text-gray-200 mb-2">
|
|
Vendor Not Found
|
|
</h3>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400 mb-4">
|
|
The vendor you're trying to access doesn't exist or is inactive.
|
|
</p>
|
|
<a href="/" class="inline-flex items-center px-4 py-2 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple">
|
|
Go to Platform Home
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- Loading State -->
|
|
<div x-show="loading && !vendor" class="text-center py-8">
|
|
<span class="inline-block w-8 h-8 text-purple-600" x-html="$icon('spinner', 'w-8 h-8 animate-spin')"></span>
|
|
<p class="mt-2 text-sm text-gray-600 dark:text-gray-400">Loading vendor information...</p>
|
|
</div>
|
|
|
|
<hr class="my-8" />
|
|
|
|
<p class="mt-4">
|
|
<a class="text-sm font-medium text-purple-600 dark:text-purple-400 hover:underline"
|
|
href="#">
|
|
Forgot your password?
|
|
</a>
|
|
</p>
|
|
<p class="mt-2">
|
|
<a class="text-sm font-medium text-gray-600 dark:text-gray-400 hover:underline"
|
|
href="/">
|
|
← Back to Platform
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Scripts - ORDER MATTERS! -->
|
|
|
|
<!-- 1. Log Configuration -->
|
|
<script src="{{ url_for('static', path='shared/js/log-config.js') }}"></script>
|
|
|
|
<!-- 2. Icons -->
|
|
<script src="{{ url_for('static', path='shared/js/icons.js') }}"></script>
|
|
|
|
<!-- 3. Utils -->
|
|
<script src="{{ url_for('static', path='shared/js/utils.js') }}"></script>
|
|
|
|
<!-- 4. API Client -->
|
|
<script src="{{ url_for('static', path='shared/js/api-client.js') }}"></script>
|
|
|
|
<!-- 5. Alpine.js v3 -->
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.14.0/dist/cdn.min.js"></script>
|
|
|
|
<!-- 6. Login Logic -->
|
|
<script src="{{ url_for('static', path='vendor/js/login.js') }}"></script>
|
|
</body>
|
|
</html> |