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
+1 -1
View File
@@ -1,7 +1,7 @@
#--------------------------------------------------------------------
# ENVIRONMENT
#--------------------------------------------------------------------
ENV_ID='LIV20231603'
CI_ENVIRONMENT = production
UID=1000
MYSQL_ROOT_PASSWORD=cod31gn1t3
+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>