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" />
|
2025-02-24 00:31:17 +01:00
|
|
|
<link rel="stylesheet" href="/css/offers.css" />
|
2025-02-22 01:10:22 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2025-02-22 01:11:55 +01:00
|
|
|
<%- include("partials/appCommonHeader") %>
|
2025-02-22 01:10:22 +01:00
|
|
|
|
2025-02-24 16:04:22 +01:00
|
|
|
<div class="over-background" id="offers-root">
|
2025-02-24 16:46:26 +01:00
|
|
|
<button
|
|
|
|
|
id="button-start-create-offer"
|
|
|
|
|
class="button-primary button-medium font-medium"
|
|
|
|
|
style="display: block"
|
|
|
|
|
>
|
2025-02-22 01:53:14 +01:00
|
|
|
Crear nueva oferta
|
|
|
|
|
</button>
|
2025-02-24 16:46:26 +01:00
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
id="create-offer-controls"
|
2025-02-24 23:58:58 +01:00
|
|
|
style="display: none;"
|
2025-02-24 16:46:26 +01:00
|
|
|
>
|
2025-02-24 16:04:22 +01:00
|
|
|
<div id="close-offer-controls-area">
|
2025-02-24 16:46:26 +01:00
|
|
|
<img
|
|
|
|
|
id="close-offer-controls-x"
|
|
|
|
|
src="/img/circle-xmark.svg"
|
|
|
|
|
class="clickable"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-02-24 12:04:36 +01:00
|
|
|
<h2>Añade los detalles de tu oferta</h2>
|
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">
|
2025-02-24 16:46:26 +01:00
|
|
|
<h3>Premium</h3>
|
|
|
|
|
<div id="premium-content-area">
|
|
|
|
|
<div id="premium-selector-area">
|
|
|
|
|
<div id="premium-value">0%</div>
|
2025-02-24 17:20:35 +01:00
|
|
|
<div id="premium-buttons-container">
|
|
|
|
|
<button class="premium-button" id="button-increase-premium">
|
|
|
|
|
+</button
|
|
|
|
|
><button class="premium-button" id="button-decrease-premium">
|
|
|
|
|
-
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2025-02-24 16:46:26 +01:00
|
|
|
</div>
|
|
|
|
|
<div id="premium-price-display-area">
|
|
|
|
|
<p>
|
|
|
|
|
Tu precio: <span id="offer-price">90 000</span>€/BTC
|
|
|
|
|
<span>(Precio mercado: <span>83 000</span>€/BTC)</span>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-02-23 00:22:34 +01:00
|
|
|
</div>
|
2025-02-23 00:41:32 +01:00
|
|
|
<div id="amount-area">
|
2025-02-24 17:11:02 +01:00
|
|
|
<h3>¿Cuánto?</h3>
|
|
|
|
|
<div id="amount-area-content">
|
|
|
|
|
<div id="eur-amount" class="money-amount-input-area">
|
|
|
|
|
<input
|
|
|
|
|
id="input-eur-amount"
|
|
|
|
|
type="text"
|
|
|
|
|
class="money-input input-money-amount"
|
|
|
|
|
required
|
|
|
|
|
/><!--
|
|
|
|
|
-->
|
|
|
|
|
<div id="eur-symbol" class="curr-symbol">
|
|
|
|
|
<span id="eur-character" class="curr-character">€</span>
|
|
|
|
|
</div>
|
2025-02-24 11:20:24 +01:00
|
|
|
</div>
|
2025-02-24 17:11:02 +01:00
|
|
|
<div id="btc-amount" class="money-amount-input-area">
|
|
|
|
|
<input
|
|
|
|
|
id="input-btc-amount"
|
|
|
|
|
type="text"
|
|
|
|
|
class="money-input input-money-amount"
|
|
|
|
|
disabled
|
|
|
|
|
/><!--
|
|
|
|
|
-->
|
|
|
|
|
<div id="sats-symbol" class="curr-symbol">
|
|
|
|
|
<span id="sats-character" class="curr-character">SAT</span>
|
|
|
|
|
</div>
|
2025-02-24 00:31:17 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-02-23 00:41:32 +01:00
|
|
|
</div>
|
|
|
|
|
<div id="bitcoin-methods-area">
|
2025-02-24 17:39:09 +01:00
|
|
|
<h3>¿Cómo se mueve el Bitcoin?</h3>
|
|
|
|
|
<div id="onchain-checkbox-area" class="checkbox-row">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
name="onchain"
|
|
|
|
|
id="onchain-checkbox"
|
|
|
|
|
checked
|
|
|
|
|
/><label for="onchain">Onchain</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="lightning-checkbox-area" class="checkbox-row">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
name="lightning"
|
|
|
|
|
id="lightning-checkbox"
|
|
|
|
|
checked
|
|
|
|
|
/><label for="lightning">Lightning</label>
|
|
|
|
|
</div>
|
2025-02-24 16:46:26 +01:00
|
|
|
<p id="at-least-one-checkbox" style="display: none">
|
|
|
|
|
Tienes que seleccionar al menos una opción.
|
|
|
|
|
</p>
|
2025-02-24 12:04:36 +01:00
|
|
|
</div>
|
|
|
|
|
<div id="trust-area">
|
2025-02-24 23:47:01 +01:00
|
|
|
<h3>¿Quién puede ver la oferta?</h3>
|
|
|
|
|
<div id="my-trusted-area" class="checkbox-row">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
name="my-trusted"
|
|
|
|
|
id="my-trusted-checkbox"
|
|
|
|
|
checked
|
|
|
|
|
disabled
|
|
|
|
|
/><label for="my-trusted">Mis confiados</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="my-trusted-trusted-area" class="checkbox-row">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
name="my-trusted-trusted"
|
|
|
|
|
id="my-trusted-trusted-checkbox"
|
|
|
|
|
checked
|
|
|
|
|
/><label for="my-trusted-trusted"
|
|
|
|
|
>Los confiados de mis confiados</label
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="all-members-area" class="checkbox-row">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
name="all-members"
|
|
|
|
|
id="all-members-checkbox"
|
|
|
|
|
/><label for="all-members">Todos los miembros</label>
|
|
|
|
|
</div>
|
2025-02-23 00:41:32 +01:00
|
|
|
</div>
|
2025-02-24 12:54:16 +01:00
|
|
|
<div id="other-area">
|
2025-02-24 23:47:01 +01:00
|
|
|
<h3>Extras</h3>
|
|
|
|
|
<div id="large-bills-area" class="checkbox-row">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
name="large-bills"
|
|
|
|
|
id="large-bills-checkbox"
|
|
|
|
|
/><label for="large-bills"
|
|
|
|
|
>Se pueden usar billetes grandes (100€, 200€, 500€)</label
|
|
|
|
|
>
|
|
|
|
|
</div>
|
2025-02-24 12:54:16 +01:00
|
|
|
</div>
|
2025-02-24 23:58:58 +01:00
|
|
|
<div id="submit-button-area">
|
|
|
|
|
<button id="button-submit-offer" class="button-primary button-large">
|
2025-02-22 01:53:14 +01:00
|
|
|
Publicar oferta
|
|
|
|
|
</button>
|
2025-02-22 01:10:22 +01:00
|
|
|
</div>
|
2025-02-24 23:58:58 +01:00
|
|
|
</div>
|
2025-02-22 01:10:22 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<%- include("partials/appCommonScripts") %>
|
|
|
|
|
<script src="/javascript/offers.js"></script>
|
2025-02-24 11:24:17 +01:00
|
|
|
<script src="/javascript/utils.js"></script>
|
2025-02-22 01:10:22 +01:00
|
|
|
</body>
|
|
|
|
|
</html>
|