mirror of
https://github.com/FranP-code/API-and-CRUD-for-Ecommerce-with-Node.js-FRONTEND.git
synced 2025-10-12 23:52:33 +00:00
151 lines
4.8 KiB
HTML
151 lines
4.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Columbus</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="menu-lateral">
|
|
<img src="./img/three lines menu-min.png" alt="three lines menu" class="button"> <!--Source: https://www.flaticon.com/premium-icon/menu_3502458?term=three%20lines&page=1&position=4&page=1&position=4&related_id=3502458&origin=search-->
|
|
</div>
|
|
|
|
<div class="pagina-principal">
|
|
|
|
<header>
|
|
<div class="logo">
|
|
<h1>Columbus</h1>
|
|
<h3>Bakery Wholesale</h3>
|
|
</div>
|
|
<div class="perfil">
|
|
|
|
<div class="informacion-personal">
|
|
|
|
<div class="text">
|
|
<span id="perfil-nombre">Ana María</span>
|
|
<span id="nacionalidad">ARG</span>
|
|
</div>
|
|
|
|
<img src="./img/perfil.png" alt="profile image" class="profile-img button">
|
|
</div>
|
|
|
|
<img src="./img/menu-min.png" alt="menu image" class="profile-menu button"> <!-- Source: https://www.flaticon.es/icono-gratis/menu_483345?term=menu%20vertical&page=1&position=10&page=1&position=10&related_id=483345&origin=search-->
|
|
</div>
|
|
</header>
|
|
|
|
<div class="primer-columna">
|
|
<div class="checkout">
|
|
<table id="products-display-checkout">
|
|
<tr>
|
|
<th>
|
|
Cantidad
|
|
</th>
|
|
<th>
|
|
Producto
|
|
</th>
|
|
<th>
|
|
Tax
|
|
</th>
|
|
<th>
|
|
Total
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<div>
|
|
<span class="total">Total</span>
|
|
<span class="precio"></span>
|
|
<span class="moneda">$</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="botones-de-descuento">
|
|
|
|
<button>
|
|
DESCUENTO DE EMPLEADOS
|
|
</button>
|
|
|
|
<button>
|
|
VISTA CLIENTE
|
|
</button>
|
|
|
|
<button>
|
|
CÓDIGO PROMOCIONAL
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="segunda-columna">
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
BEBIDAS
|
|
</li>
|
|
<li>
|
|
COMIDAS
|
|
</li>
|
|
<li>
|
|
REPOSTERÍA Y PANADERÍA
|
|
</li>
|
|
<li>
|
|
REFRIGERADOS
|
|
</li>
|
|
<li>
|
|
<img src="./img/more-options-min.png" alt="more options button"> <!--Source: https://www.flaticon.com/premium-icon/more_5857049?term=more%20apps&page=1&position=46&page=1&position=46&related_id=5857049&origin=search-->
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="productos">
|
|
<!-- //! RELLENAR CON DATOS DE EJEMPLO-->
|
|
</div>
|
|
|
|
<div class="sub-menu">
|
|
|
|
<div class="opciones-de-pago">
|
|
|
|
<div>
|
|
<img src="./img/pngwing.com.png" alt="cash icon">
|
|
</div>
|
|
|
|
<div>
|
|
<img src="./img/visa.png" alt="Visa icon">
|
|
</div>
|
|
|
|
<div>
|
|
<img src="./img/mastercard.png" alt="Mastercard icon">
|
|
</div>
|
|
|
|
<div>
|
|
<img src="./img/uber-eats.jpg" alt="Uber Eats icon">
|
|
</div>
|
|
|
|
<div>
|
|
DEBITO
|
|
</div>
|
|
|
|
<div>
|
|
+
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pagar">
|
|
|
|
<span>PAGAR</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |