diff --git a/views/home.php b/views/home.php
index e230323..6c64a2e 100644
--- a/views/home.php
+++ b/views/home.php
@@ -2,7 +2,7 @@
$hoy = date("Y-m-d H:i:s");
$query = mysqli_query($connect,"SELECT * FROM Eventos WHERE estado = 1 AND id = 1 ");
$data = mysqli_fetch_array($query);
- $inicio = $data["fecha_inicio"];
+ $inicio = $data["fecha_inicio"];
$registro_solicitud = new DateTime( $inicio );//fecha inicial
$fecha_actual = new DateTime($hoy);//fecha de cierre
@@ -81,7 +81,7 @@
-
+
@@ -113,11 +113,12 @@
margin-left: 10px;
margin-right: 10px;
max-width: 500px;
- background-color: #ffffff;
+ background-color: #a62b4e;
padding: 8px 30px;
padding-top: 15px;
- color: #00b08c;
+ color: #fff;
line-height: 30px;
+ border-radius: 20px;
}
@@ -126,7 +127,7 @@
//===
// VARIABLES
//===
-const DATE_TARGET = new Date('01/18/2021 09:00 AM');
+const DATE_TARGET = new Date('04/20/2021 07:30 AM');
// DOM for render
const SPAN_DAYS = document.getElementById("dias");
const SPAN_HOURS = document.getElementById("horas");
|