Custom login page interface

How to custom login page Filament v3. such as edit the title.
No description
12 Replies
nuriniman93
nuriniman93OPβ€’2y ago
is it possible for me to add new button using <a></a>?
krekas
krekasβ€’2y ago
Yes
nuriniman93
nuriniman93OPβ€’2y ago
I am still new with filament. I want to customize the login page filament v3 just like in this picture. I already create new Page named Login (php artisan make:filament-page Auth/Login) and modify AdminPanelProvider.php file. (->login(Login::class)) and modify the Login.php file (use Filament\Pages\Auth\Login as AuthLogin; class Login extends AuthLogin {}). Then idk what should I write in the class. Also, there is a blade file created (\resources\views\filament\pages\auth\login.blade.php) when I create the Login.php Pages. Please give me some tutorial 😒
No description
krekas
krekasβ€’2y ago
First learn basics. Because what you don't know it's basics. What methods to overwrite you need to check in the base class
nuriniman93
nuriniman93OPβ€’2y ago
yey.. now it is work. but the css for <a href="#" class="mt-8 my-2 group relative w-full flex justify-center py-2 px-4 border border-transparent text-sm font-medium rounded-md text-black bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> Email without Password </a> is not display properly. how to fix it? I already install tailwindcss
No description
Andrew Wallo
Andrew Walloβ€’2y ago
This essentially looks exactly like my Login page from #companies v2
Andrew Wallo
Andrew Walloβ€’2y ago
This is what it looks like in V3. The glow in the background is gone though.
No description
Andrew Wallo
Andrew Walloβ€’2y ago
If you want something similar you can just look at what I have in my package as an example.
krekas
krekasβ€’2y ago
Just installing tailwind isn't enough
nuriniman93
nuriniman93OPβ€’2y ago
Thanks for helping guys. 😊

Did you find this page helpful?