62 lines
1.8 KiB
Plaintext
62 lines
1.8 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="light">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@ViewData["Title"] - @ViewBag.CompanyName</title>
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="~/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Bootstrap Icons -->
|
|
<link rel="stylesheet" href="~/lib/bootstrap-icons/font/bootstrap-icons.css">
|
|
|
|
<style>
|
|
* { box-sizing: border-box; }
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: #f8fafc;
|
|
min-height: 100vh;
|
|
color: #1e293b;
|
|
}
|
|
.card {
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.08);
|
|
}
|
|
.btn-success {
|
|
background-color: #16a34a;
|
|
border-color: #16a34a;
|
|
font-weight: 600;
|
|
}
|
|
.btn-success:hover {
|
|
background-color: #15803d;
|
|
border-color: #15803d;
|
|
}
|
|
.approval-header {
|
|
border-bottom: 1px solid #e2e8f0;
|
|
padding-bottom: 1rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container" style="max-width:720px;padding:2rem 1rem;">
|
|
<div class="text-center mb-4 approval-header">
|
|
<h5 class="fw-bold text-muted mb-0">@ViewBag.CompanyName</h5>
|
|
</div>
|
|
|
|
@RenderBody()
|
|
|
|
<div class="text-center mt-5 text-muted" style="font-size:0.8rem;">
|
|
<p class="mb-0">Powered by Powder Coating Logix</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap 5 JS Bundle -->
|
|
<script src="~/lib/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
</body>
|
|
</html>
|