Env label added

This commit is contained in:
2023-03-16 20:54:46 -04:00
parent 0e3a64cee8
commit dd9f305b96
3 changed files with 11 additions and 2 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ class Home extends BaseController
{
public function index()
{
return view('welcome_message');
$data['envID'] = getenv('ENV_ID');
return view('welcome_message',$data);
}
}
+8
View File
@@ -20,10 +20,18 @@
background-size: cover;
background-position: center;
}
.page_label{
font-size:40px;
color:white;
position:absolute;
}
</style>
</head>
<body>
<div class="page_label">
<?php echo $envID ?>
</div>