I am currently utilizing the following bootstrap template to develop a Help Desk Ticket App:
After the user logs in on the index page, there are two cards available for the user to choose between heading to the app's dashboard or creating a ticket. I am attempting to center both the dashboard button and ticket button within their respective cards.
<div class="container">
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn more about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>
<div class="container" id="ticket-dashboard-container">
<div class="row justify-content-center">
<div class="card" id="index-page-my-tickets">
<div class="card-header">
<strong>My</strong> Tickets
</div>
<div class="container" >
<div class="row justify-content-center">
<button class="btn btn-info btn-sm" asp-action="EmployeeMyTicketsView" style="height: 30.8px; width: 86.6px">Tickets</button>
</div>
</div>
</div>
<div class="card" id="index-page-dashboard">
<div class="card-header">
<strong>Dashboard</strong>
</div>
<div class="container">
<div class="row justify-content-center">
<button class="btn btn-info btn-sm" style="height: 30.8px; width: 100.6px">Dashboard</button>
</div>
</div>
</div>
</div>
</div>
</div>
Any suggestions on how to effectively center the two buttons?
Github repository link: https://github.com/zhadjah9559/HelpDeskTicket/tree/3.LoginAndDB