source: KernelRecordsMVC.Web/Views/Admin/Index.cshtml@ 08aefc6

main
Last change on this file since 08aefc6 was 08aefc6, checked in by mmilevski <markomilevski3@…>, 4 weeks ago

Initial commit

  • Property mode set to 100644
File size: 842 bytes
Line 
1@{
2 ViewData["Title"] = "Admin Dashboard";
3}
4
5<h1>Admin Dashboard</h1>
6
7@if (TempData["Success"] != null)
8{
9 <div class="alert alert-success">
10 @TempData["Success"]
11 </div>
12}
13
14<div class="row mt-4">
15
16 <div class="col-md-6 mb-3">
17
18 <div class="card h-100">
19
20 <div class="card-body">
21
22 <h4>Products</h4>
23
24 <p>
25 Create and modify products available
26 in the music store.
27 </p>
28
29 <a asp-action="Products"
30 class="btn btn-primary">
31
32 Manage Products
33
34 </a>
35
36 <a asp-action="CreateProduct"
37 class="btn btn-success">
38
39 New Product
40
41 </a>
42
43 </div>
44
45 </div>
46
47 </div>
48
49</div>
Note: See TracBrowser for help on using the repository browser.