Register Form Component - LaraCoreKit

Registration form with password strength meter and terms checkbox. Signup form for Laravel apps.

Register Form

Registration with password strength indicator

Preview

Create Account

View Code
<form x-data="{ password: '', strength: 0, terms: false, calculateStrength() { let score = 0; if (this.password.length > 8) score++; if (/[a-z]/.test(this.password) && /[A-Z]/.test(this.password)) score++; if (/[0-9]/.test(this.password)) score++; if (/[^a-zA-Z0-9]/.test(this.password)) score++; this.strength = score; } }" class="max-w-md mx-auto bg-white dark:bg-gray-800 rounded-lg shadow p-8">
    <h2 class="text-2xl font-bold text-gray-900 dark:text-white mb-6">Create Account</h2>
    
    <div class="mb-4">
        <input type="password" x-model="password" @input="calculateStrength()" class="w-full px-4 py-2 border rounded-lg dark:bg-gray-700">
        <div class="mt-2 flex gap-1">
            <div class="h-1 flex-1 rounded" :class="strength >= 1 ? 'bg-red-500' : 'bg-gray-200'"></div>
            <div class="h-1 flex-1 rounded" :class="strength >= 2 ? 'bg-yellow-500' : 'bg-gray-200'"></div>
            <div class="h-1 flex-1 rounded" :class="strength >= 3 ? 'bg-blue-500' : 'bg-gray-200'"></div>
            <div class="h-1 flex-1 rounded" :class="strength >= 4 ? 'bg-green-500' : 'bg-gray-200'"></div>
        </div>
    </div>
    <button type="submit" :disabled="!terms" class="w-full bg-blue-600 text-white py-2 rounded-lg disabled:opacity-50">Create Account</button>
</form>