secajs/src/views/offers.ejs
2025-03-31 16:12:33 +02:00

37 lines
989 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<title>Seca home</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<%- include("partials/commonStyles") %>
<link rel="stylesheet" href="/css/offers.css" />
</head>
<body>
<%- include("partials/appCommonHeader") %>
<div class="over-background" id="offers-root">
<button
id="button-view-my-offers"
class="button-primary button-medium font-medium"
>
Ver mis ofertas
</button>
</div>
<div class="over-background" id="view-my-offers-root">
<h2>Mis ofertas</h2>
<button
id="button-start-create-offer"
class="button-primary button-medium font-medium"
>
Crear nueva oferta
</button>
<div id="own-offers-container">
<p>Vaya, no hay nada por aquí...</p>
</div>
</div>
<script src="/javascript/offers.bundle.js"></script>
</body>
</html>