Start using blade and tailwindcss

This commit is contained in:
DariusIII
2025-10-03 16:42:39 +02:00
parent 2e6fcc43f9
commit 1a747afdd0
40 changed files with 4939 additions and 744 deletions
@@ -164,15 +164,7 @@ class LoginController extends Controller
public function showLoginForm()
{
$theme = 'Gentele';
$meta_title = 'Login';
$meta_keywords = 'Login';
$meta_description = 'Login';
// $content = app('smarty.view')->fetch($theme.'/login.tpl');
app('smarty.view')->assign(compact(/* 'content', */ 'meta_title', 'meta_keywords', 'meta_description'));
return app('smarty.view')->display($theme.'/login.tpl');
return view('auth.login');
}
public function logout(Request $request): \Illuminate\Routing\Redirector|RedirectResponse