39 lines
1.7 KiB
HTML
39 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
||
<html xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/extras/spring-security" lang="es">
|
||
<head>
|
||
<meta charset="UTF-8"/>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
<title>TAI – AGE | Comprar acceso</title>
|
||
<link rel="stylesheet" th:href="@{/css/style.css}"/>
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
|
||
<link rel="stylesheet" th:href="@{/css/pagar.css}"/>
|
||
</head>
|
||
<body>
|
||
<div class="pagar-wrap">
|
||
<div class="pagar-card">
|
||
<span class="pagar-badge"><i class="fas fa-lock"></i> Pago único · Sin suscripción</span>
|
||
<h2>Acceso completo al curso TAI – AGE</h2>
|
||
<div class="pagar-precio">
|
||
<span th:text="${precio}">29.00</span> €<small> / acceso permanente</small>
|
||
</div>
|
||
<ul class="pagar-features">
|
||
<li><i class="fas fa-check"></i> Todos los bloques y temas del temario oficial</li>
|
||
<li><i class="fas fa-check"></i> Apuntes en Markdown con formato enriquecido</li>
|
||
<li><i class="fas fa-check"></i> Actualizaciones incluidas</li>
|
||
<li><i class="fas fa-check"></i> Acceso inmediato tras el pago</li>
|
||
<li><i class="fas fa-check"></i> Compatible con móvil y escritorio</li>
|
||
</ul>
|
||
<form th:action="@{/pagar/iniciar}" method="post">
|
||
<button type="submit" class="btn-stripe">
|
||
<i class="fab fa-stripe-s"></i> Pagar ahora con Stripe
|
||
</button>
|
||
</form>
|
||
<p class="pagar-footer">
|
||
Pago seguro gestionado por Stripe.<br/>
|
||
<a th:href="@{/}">← Volver al inicio</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|