forked from juanbrujo/amigurumi-ines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailure.html
More file actions
75 lines (75 loc) · 2.22 KB
/
failure.html
File metadata and controls
75 lines (75 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pago Fallido - Amigurumis de Inés</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: white;
border-radius: 20px;
padding: 3rem;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
text-align: center;
max-width: 500px;
margin: 2rem;
}
.failure-icon {
font-size: 4rem;
color: #ef4444;
margin-bottom: 1rem;
}
h1 {
color: #1f2937;
margin-bottom: 1rem;
font-size: 2rem;
}
p {
color: #6b7280;
line-height: 1.6;
margin-bottom: 2rem;
}
.btn {
background: linear-gradient(135deg, #f43f5e, #f97316);
color: white;
padding: 0.75rem 2rem;
border: none;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: transform 0.2s;
margin: 0.5rem;
}
.btn:hover {
transform: translateY(-2px);
}
.btn-secondary {
background: #6b7280;
}
</style>
</head>
<body>
<div class="container">
<div class="failure-icon">❌</div>
<h1>Pago No Completado</h1>
<p>El pago no se pudo completar correctamente. Esto puede deberse a problemas con tu tarjeta o método de pago.</p>
<p><strong>No te preocupes, puedes intentarlo nuevamente cuando gustes.</strong></p>
<div>
<a href="/" class="btn">Intentar Nuevamente</a>
<a href="/" class="btn btn-secondary">Volver al Inicio</a>
</div>
</div>
</body>
</html>