Advertisement
CastelShal

Untitled

Aug 27th, 2024 (edited)
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. @model YourNamespace.Pages.IndexModel
  2. @{
  3.     ViewData["Title"] = "Home";
  4. }
  5.  
  6. <div class="jumbotron bg-light text-center p-5 rounded">
  7.     <h1 class="display-4">Welcome to the Library Management System</h1>
  8.     <p class="lead">Manage your library with ease and efficiency.</p>
  9.     <div class="mt-4">
  10.         <a class="btn btn-primary btn-lg" href="/Books/Index">View Books</a>
  11.         <a class="btn btn-success btn-lg" href="/Members/Index">View Members</a>
  12.         <a class="btn btn-info btn-lg" href="/Loans/Index">View Loans</a>
  13.     </div>
  14. </div>
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement