2025-02-22 01:10:22 +01:00
|
|
|
<!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" />
|
|
|
|
|
<link rel="stylesheet" href="/css/seca.css" />
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2025-02-22 01:11:55 +01:00
|
|
|
<%- include("partials/appCommonHeader") %>
|
2025-02-22 01:10:22 +01:00
|
|
|
|
|
|
|
|
<div class="over-background">
|
2025-02-22 01:53:14 +01:00
|
|
|
<button id="button-start-create-offer" class="button-primary">
|
|
|
|
|
Crear nueva oferta
|
|
|
|
|
</button>
|
|
|
|
|
<div id="create-offer-controls" style="display: none">
|
2025-02-22 02:02:14 +01:00
|
|
|
<img id="close-order-controls-x" src="/img/circle-xmark.svg" class="clickable" width="5%">
|
2025-02-22 01:53:14 +01:00
|
|
|
<p>Añade los detalles de tu oferta</p>
|
2025-02-22 02:02:14 +01:00
|
|
|
<button>Quiero comprar Bitcoin</button>
|
|
|
|
|
<button>Quiero vender Bitcoin</button>
|
2025-02-22 01:53:14 +01:00
|
|
|
<button id="button-submit-offer" class="button-primary" disabled>
|
|
|
|
|
Publicar oferta
|
|
|
|
|
</button>
|
2025-02-22 01:10:22 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<%- include("partials/appCommonScripts") %>
|
|
|
|
|
<script src="/javascript/offers.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|