47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
crossorigin="anonymous">
|
|
<title>{{ $title }}</title>
|
|
<style>
|
|
body {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
body {
|
|
padding: 50px;
|
|
}
|
|
|
|
.alert-coupon {
|
|
border: 1px dashed;
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
text-align: center;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="alert alert-{{ $color }} alert-coupon">
|
|
<h4>{{ $heading }}</h4>
|
|
<p>{{ $message }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|