parsguy / login.html
Soeman's picture
Create a complete, modern web application for an advanced AI chat assistant that is more powerful and feature-rich than ChatGPT, fully supporting Persian (Farsi) language and right-to-left (RTL) layout.
67486c5 verified
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ورود - پارس‌گوی</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v30.1.0/dist/font-face.css" rel="stylesheet">
<style>
body { font-family: 'Vazir', sans-serif; }
.rtl { direction: rtl; }
</style>
</head>
<body class="bg-gray-50 font-vazir rtl">
<div class="min-h-screen flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-md w-full space-y-8">
<div>
<div class="flex justify-center">
<div class="w-16 h-16 bg-gradient-to-r from-primary-500 to-primary-600 rounded-full flex items-center justify-center text-white font-bold text-2xl">
🧠
</div>
<h2 class="mt-6 text-center text-3xl font-extrabold text-gray-900">
ورود به پارس‌گوی
</h2>
</div>
<form class="mt-8 space-y-6" action="#" method="POST">
<div class="rounded-md shadow-sm -space-y-px">
<div>
<label for="email-address" class="sr-only">آدرس ایمیل</label>
<input id="email-address" name="email" type="email" autocomplete="email" required class="relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-t-lg focus:outline-none focus:ring-primary-500 focus:border-primary-500" placeholder="آدرس ایمیل">
</div>
<div>
<label for="password" class="sr-only">رمز عبور</label>
<input id="password" name="password" type="password" autocomplete="current-password" required class="relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-b-lg focus:outline-none focus:ring-primary-500 focus:border-primary-500" placeholder="رمز عبور">
</div>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<input id="remember-me" name="remember-me" type="checkbox" class="h-4 w-4 text-primary-600 focus:ring-primary-500 border-gray-300 rounded">
<label for="remember-me" class="mr-2 block text-sm text-gray-900">
مرا به خاطر بسپار
</label>
</div>
<div class="text-sm">
<a href="#" class="font-medium text-primary-600 hover:text-primary-500">
فراموشی رمز عبور؟
</a>
</div>
</div>
<div>
<button type="submit" class="group relative w-full flex justify-center py-2 px-4 border border-transparent text-sm font-medium rounded-md text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500">
ورود به حساب
</button>
</div>
<div class="text-center">
<span class="text-sm text-gray-600">حساب کاربری ندارید؟ </span>
<a href="/register.html" class="font-medium text-primary-600 hover:text-primary-500">
ثبت‌نام کنید
</a>
</div>
</form>
</div>
</div>
<script>
feather.replace();
</script>
</body>
</html>