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:18:23 +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:18:23 +01:00
|
|
|
<div id="button-group-buy-or-sell" class="button-group">
|
2025-02-22 22:33:51 +01:00
|
|
|
<button
|
|
|
|
|
data-value="buy-bitcoin"
|
|
|
|
|
id="button-buy-bitcoin"
|
|
|
|
|
class="selected"
|
|
|
|
|
>
|
|
|
|
|
Quiero comprar Bitcoin</button
|
|
|
|
|
><button data-value="sell-bitcoin" id="button-sell-bitcoin">
|
|
|
|
|
Quiero vender Bitcoin
|
|
|
|
|
</button>
|
2025-02-22 02:18:23 +01:00
|
|
|
</div>
|
2025-02-23 00:22:34 +01:00
|
|
|
<div id="premium-area">
|
|
|
|
|
<p>Premium</p>
|
|
|
|
|
<div id="premium-value">0%</div>
|
|
|
|
|
<button id="button-increase-premium">+</button
|
|
|
|
|
><button id="button-decrease-premium">-</button>
|
|
|
|
|
</div>
|
2025-02-23 00:41:32 +01:00
|
|
|
<div id="amount-area">
|
|
|
|
|
<p>¿Cuánto?</p>
|
|
|
|
|
<input type="number">
|
|
|
|
|
</div>
|
|
|
|
|
<div id="bitcoin-methods-area">
|
|
|
|
|
<p>¿Cómo se mueve el Bitcoin?</p>
|
|
|
|
|
<label for="onchain">Onchain</label><input type="checkbox" name="onchain" id="onchain-checkbox">
|
|
|
|
|
<label for="lightning">Lightning</label><input type="checkbox" name="lightning" id="lightning-checkbox">
|
|
|
|
|
</div>
|
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>
|