Ryugen22 commited on
Commit
b33491a
·
verified ·
1 Parent(s): 8691d79

Delete templates/success.html

Browse files
Files changed (1) hide show
  1. templates/success.html +0 -85
templates/success.html DELETED
@@ -1,85 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8"/>
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
- <title>RECOM — Booking Confirmed!</title>
7
- <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet"/>
8
- <style>
9
- *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
10
- :root { --orange: #F26419; --peach: #F9A87E; --cream: #FFF3EC; --deep: #3D1A00; --mid: #7A3B10; --light-orange: #FDDCC4; }
11
- body {
12
- font-family: 'DM Sans', sans-serif; background: var(--cream);
13
- min-height: 100vh; display: flex; flex-direction: column;
14
- align-items: center; justify-content: center; overflow-x: hidden; padding: 40px 20px;
15
- }
16
- body::before {
17
- content: ''; position: fixed; top: -100px; right: -100px;
18
- width: 400px; height: 400px; border-radius: 50%;
19
- background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
20
- opacity: 0.45; pointer-events: none;
21
- }
22
- .icon-wrap {
23
- width: 90px; height: 90px; background: var(--orange); border-radius: 50%;
24
- display: flex; align-items: center; justify-content: center;
25
- font-size: 40px; margin-bottom: 24px;
26
- box-shadow: 0 12px 36px rgba(242,100,25,0.35);
27
- animation: pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
28
- }
29
- @keyframes pop {
30
- from { transform: scale(0); opacity: 0; }
31
- to { transform: scale(1); opacity: 1; }
32
- }
33
- h2 {
34
- font-family: 'Playfair Display', serif; font-size: 34px;
35
- color: var(--deep); margin-bottom: 12px; text-align: center;
36
- animation: fadeUp 0.5s 0.3s ease both;
37
- }
38
- p {
39
- font-size: 15px; color: var(--mid); font-weight: 300;
40
- max-width: 340px; text-align: center; line-height: 1.7;
41
- margin-bottom: 8px; animation: fadeUp 0.5s 0.4s ease both;
42
- }
43
- .price-note {
44
- display: inline-flex; align-items: center; gap: 8px;
45
- background: var(--orange); color: #fff;
46
- padding: 10px 24px; border-radius: 100px; font-size: 15px;
47
- margin: 20px 0; font-weight: 500; animation: fadeUp 0.5s 0.5s ease both;
48
- box-shadow: 0 6px 20px rgba(242,100,25,0.28);
49
- }
50
- .steps-done {
51
- display: flex; flex-direction: column; gap: 10px;
52
- background: #fff; border: 1.5px solid var(--light-orange);
53
- border-radius: 18px; padding: 24px 28px; margin: 20px 0;
54
- width: min(360px, 90vw); animation: fadeUp 0.5s 0.6s ease both;
55
- }
56
- .step-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--mid); }
57
- .step-row .dot { width: 28px; height: 28px; background: var(--light-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
58
- a.back {
59
- font-size: 14px; color: var(--orange); text-decoration: none;
60
- font-weight: 500; margin-top: 10px; animation: fadeUp 0.5s 0.7s ease both;
61
- }
62
- a.back:hover { text-decoration: underline; }
63
- @keyframes fadeUp {
64
- from { opacity: 0; transform: translateY(16px); }
65
- to { opacity: 1; transform: translateY(0); }
66
- }
67
- </style>
68
- </head>
69
- <body>
70
- <div class="icon-wrap">🎉</div>
71
- <h2>Booking Confirmed!</h2>
72
- <p>We've received your details. Our team will reach out to you shortly to arrange pick-up.</p>
73
-
74
- <div class="price-note">₹200 total · No hidden charges</div>
75
-
76
- <div class="steps-done">
77
- <div class="step-row"><div class="dot">📋</div> We'll call/WhatsApp you to confirm</div>
78
- <div class="step-row"><div class="dot">🛵</div> Record picked up from your address</div>
79
- <div class="step-row"><div class="dot">✏️</div> Record completed by our team</div>
80
- <div class="step-row"><div class="dot">🏠</div> Dropped back at your doorstep</div>
81
- </div>
82
-
83
- <a href="/" class="back">← Submit another record</a>
84
- </body>
85
- </html>