skip to Main Content

Aligning two buttons in two columns horizontally Same level – Html

I am trying to make this two buttons horizontally into same level using bootstrap. <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" /> </head> <body> <div class="container"> <div class="row"> <div class="col mb-0"> <h2>h2 text</h2> <h4>h4 text</h4> <h4>Another h4 text</h4>…

VIEW QUESTION

why logout don't show and i creat it with bootstrap auth in laravel?

here is the nav bar but the code is : @else <a id="navbarDropdown" class="nav-element" href="#" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" v-pre> {{ Auth::user()->name }} </a> <div class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown"> <a class="dropdown-item" href="{{ route('logout') }}" onclick="event.preventDefault();document.getElementById('logout-form').submit();"> {{ __('Logout') }} </a> <form id="logout-form"…

VIEW QUESTION
Back To Top
Search