gcoder824/subdocflow-smooth-document-request-system
0
1<!DOCTYPE html>2<html lang="en">3<head>4 <meta charset="UTF-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>Register - SubDocFlow</title>7 <link rel="icon" type="image/x-icon" href="/static/favicon.ico">8 <script src="https://cdn.tailwindcss.com"></script>9 <script src="https://unpkg.com/feather-icons"></script>10 <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>11 <style>12 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');13 body {14 font-family: 'Poppins', sans-serif;15 background-color: #f9fafb;16 }17 .register-gradient {18 background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);19 }20 </style>21</head>22<body>23 <div class="min-h-screen flex">24 <!-- Left side - Form -->25 <div class="flex-1 flex flex-col justify-center py-12 px-4 sm:px-6 lg:flex-none lg:px-20 xl:px-24">26 <div class="mx-auto w-full max-w-sm lg:w-96">27 <div>28 <div class="flex items-center">29 <i data-feather="file-text" class="text-indigo-600 h-8 w-8"></i>30 <span class="ml-2 text-xl font-bold text-gray-900">SubDocFlow</span>31 </div>32 <h2 class="mt-6 text-3xl font-extrabold text-gray-900">33 Create a new account34 </h2>35 <p class="mt-2 text-sm text-gray-600">36 Already have an account? <a href="login.html" class="font-medium text-indigo-600 hover:text-indigo-500">Sign in here</a>37 </p>38 </div>39 40 <div class="mt-8">41 <div class="mt-6">42 <form action="dashboard.html" method="POST" class="space-y-6">43 <div>44 <label for="full_name" class="block text-sm font-medium text-gray-700">45 Full Name46 </label>47 <div class="mt-1">48 <input id="full_name" name="full_name" type="text" autocomplete="name" required class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">49 </div>50 </div>51 52 <div>53 <label for="email" class="block text-sm font-medium text-gray-700">54 Email address55 </label>56 <div class="mt-1">57 <input id="email" name="email" type="email" autocomplete="email" required class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">58 </div>59 </div>60 61 <div>62 <label for="address" class="block text-sm font-medium text-gray-700">63 Home Address (Block/Lot)64 </label>65 <div class="mt-1">66 <input id="address" name="address" type="text" required class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">67 </div>68 </div>69 70 <div class="space-y-1">71 <label for="password" class="block text-sm font-medium text-gray-700">72 Password73 </label>74 <div class="mt-1">75 <input id="password" name="password" type="password" autocomplete="new-password" required class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">76 </div>77 <p class="mt-2 text-xs text-gray-500">Must be at least 8 characters long</p>78 </div>79 80 <div class="space-y-1">81 <label for="confirm_password" class="block text-sm font-medium text-gray-700">82 Confirm Password83 </label>84 <div class="mt-1">85 <input id="confirm_password" name="confirm_password" type="password" autocomplete="new-password" required class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">86 </div>87 </div>88 89 <div class="flex items-center">90 <input id="terms" name="terms" type="checkbox" class="h-4 w-4 text-indigo-600 focus:ring-indigo-500 border-gray-300 rounded" required>91 <label for="terms" class="ml-2 block text-sm text-gray-900">92 I agree to the <a href="terms.html" class="text-indigo-600 hover:text-indigo-500">Terms of Service</a> and <a href="privacy.html" class="text-indigo-600 hover:text-indigo-500">Privacy Policy</a>93 </label>94 </div>95 96 <div>97 <button type="submit" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">98 Register99 </button>100 </div>101 </form>102 </div>103 </div>104 </div>105 </div>106 107 <!-- Right side - Image -->108 <div class="hidden lg:block relative w-0 flex-1">109 <div class="absolute inset-0 register-gradient"></div>110 <div class="absolute inset-0 flex items-center justify-center">111 <div class="max-w-md mx-auto px-10">112 <img src="http://static.photos/office/1200x630/3" alt="Document request" class="rounded-lg shadow-xl">113 <h3 class="mt-6 text-2xl font-bold text-white">Simplify your document requests</h3>114 <p class="mt-2 text-indigo-100">Join our community of residents managing their documents online.</p>115 </div>116 </div>117 </div>118 </div>119 120 <script>121 feather.replace();122 </script>123</body>124</html>125 