Spaces:
Running
Running
File size: 4,848 Bytes
67486c5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | <!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-4">
<div>
<label for="full-name" class="block text-sm font-medium text-gray-700 mb-1">نام کامل</label>
<input id="full-name" name="full-name" type="text" required class="relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-lg focus:outline-none focus:ring-primary-500 focus:border-primary-500" placeholder="نام و نام خانوادگی">
</div>
<div>
<label for="email-address" class="block text-sm font-medium text-gray-700 mb-1">آدرس ایمیل</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-lg focus:outline-none focus:ring-primary-500 focus:border-primary-500" placeholder="آدرس ایمیل">
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">رمز عبور</label>
<input id="password" name="password" type="password" autocomplete="new-password" required class="relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-lg focus:outline-none focus:ring-primary-500 focus:border-primary-500" placeholder="رمز عبور">
</div>
<div>
<label for="confirm-password" class="block text-sm font-medium text-gray-700 mb-1">تکرار رمز عبور</label>
<input id="confirm-password" name="confirm-password" type="password" autocomplete="new-password" required class="relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-lg focus:outline-none focus:ring-primary-500 focus:border-primary-500" placeholder="تکرار رمز عبور">
</div>
</div>
<div class="flex items-center">
<input id="agree-terms" name="agree-terms" type="checkbox" required class="h-4 w-4 text-primary-600 focus:ring-primary-500 border-gray-300 rounded">
<label for="agree-terms" class="mr-2 block text-sm text-gray-900">
با <a href="#" class="text-primary-600 hover:text-primary-500">قوانین و شرایط</a> موافقم
</label>
</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="/login.html" class="font-medium text-primary-600 hover:text-primary-500">
ورود
</a>
</div>
</form>
</div>
</div>
<script>
feather.replace();
</script>
</body>
</html> |