Subversion Repositories SmartDukaan

Rev

Rev 36686 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
36642 ranu 1
<html>
2
<head>
3
    <meta charset="UTF-8">
4
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
5
    <title>Under Review - SmartDukaan</title>
6
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css">
7
    <style>
8
        body {
36807 aman 9
            background: #f5f6f8;
36686 ranu 10
            font-family: 'Segoe UI', Roboto, sans-serif;
36807 aman 11
            color: #2b2b2b;
36642 ranu 12
        }
13
 
36807 aman 14
        /* ---------- Top navbar ---------- */
15
        .top-nav {
36642 ranu 16
            background: #fff;
36807 aman 17
            border-bottom: 1px solid #ececec;
18
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
19
            padding: 14px 22px;
20
            display: flex;
21
            align-items: center;
22
            justify-content: space-between;
23
            position: sticky;
24
            top: 0;
25
            z-index: 10;
36642 ranu 26
        }
27
 
36807 aman 28
        .nav-brand {
29
            display: inline-flex;
30
            align-items: center;
31
            text-decoration: none;
36642 ranu 32
        }
33
 
36807 aman 34
        .nav-brand .brand-logo {
35
            height: 30px;
36
            width: auto;
37
            display: block;
38
        }
39
 
40
        .nav-help {
41
            display: inline-flex;
36686 ranu 42
            align-items: center;
36807 aman 43
            gap: 8px;
44
            font-size: 14px;
45
            color: #555;
46
            white-space: nowrap;
36686 ranu 47
        }
48
 
36807 aman 49
        .nav-call {
36686 ranu 50
            display: inline-flex;
51
            align-items: center;
36807 aman 52
            gap: 7px;
53
            text-decoration: none;
54
            color: #555;
36686 ranu 55
        }
56
 
36807 aman 57
        .nav-call:hover {
58
            text-decoration: none;
59
        }
60
 
61
        .nav-call .call-word {
62
            color: #555;
63
            font-weight: 600;
64
        }
65
 
66
        .nav-help .phone {
67
            color: #e1212a;
36686 ranu 68
            font-weight: 700;
36642 ranu 69
        }
36807 aman 70
 
71
        /* ---------- Sub-header home button ---------- */
72
        .subhead {
73
            padding: 16px 22px 0;
74
        }
75
 
76
        .btn-home {
77
            display: inline-flex;
78
            align-items: center;
79
            gap: 7px;
80
            background: #fff;
81
            color: #374151;
82
            border: 1px solid #e3e6ea;
83
            border-radius: 9px;
84
            padding: 8px 14px;
85
            font-size: 14px;
86
            font-weight: 600;
87
            text-decoration: none;
88
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
89
        }
90
 
91
        .btn-home:hover {
92
            background: #f1f3f5;
93
            color: #374151;
94
            text-decoration: none;
95
        }
96
 
97
        /* ---------- Status card ---------- */
98
        .status-card {
99
            max-width: 560px;
100
            margin: 20px auto 30px;
101
            background: #fff;
102
            border-radius: 14px;
103
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
104
            padding: 48px 30px;
105
            text-align: center;
106
        }
107
 
108
        .status-icon {
109
            color: #f59e0b;
110
            animation: pulse 2s ease-in-out infinite;
111
        }
112
 
113
        @keyframes pulse {
114
            0%, 100% {
115
                transform: scale(1);
116
            }
117
            50% {
118
                transform: scale(1.08);
119
            }
120
        }
121
 
122
        .status-title {
123
            font-size: 22px;
124
            font-weight: 700;
125
            margin: 20px 0 0;
126
        }
127
 
128
        .status-title-hi {
129
            font-size: 16px;
130
            color: #6b7280;
131
            margin: 4px 0 0;
132
        }
133
 
134
        .status-text {
135
            color: #4b5563;
136
            font-size: 14.5px;
137
            line-height: 1.6;
138
            margin: 16px auto 0;
139
            max-width: 440px;
140
        }
141
 
142
        .status-text .hindi {
143
            display: block;
144
            margin-top: 8px;
145
            color: #6b7280;
146
        }
147
 
148
        /* ---------- Footer ---------- */
149
        .footer-help {
150
            text-align: center;
151
            font-size: 14px;
152
            color: #4b5563;
153
            padding: 20px 16px 2px;
154
        }
155
 
156
        .footer-call {
157
            display: inline-flex;
158
            align-items: center;
159
            gap: 6px;
160
            color: #e1212a;
161
            font-weight: 700;
162
            text-decoration: none;
163
            margin-left: 6px;
164
        }
165
 
166
        .footer-call:hover {
167
            text-decoration: none;
168
        }
169
 
170
        .geo-footer {
171
            text-align: center;
172
            color: #9aa1ab;
173
            font-size: 13px;
174
            padding: 8px 16px 30px;
175
            line-height: 1.6;
176
        }
177
 
178
        @media (max-width: 575px) {
179
            .top-nav {
180
                padding: 10px 12px;
181
            }
182
 
183
            .nav-brand .brand-logo {
184
                height: 22px;
185
            }
186
 
187
            .nav-call .call-word {
188
                display: none;
189
            }
190
 
191
            .nav-call {
192
                gap: 5px;
193
            }
194
 
195
            .nav-help .phone {
196
                font-size: 13px;
197
            }
198
 
199
            .subhead {
200
                padding: 12px 14px 0;
201
            }
202
        }
36642 ranu 203
    </style>
204
</head>
205
<body>
36807 aman 206
 
207
<div class="top-nav">
208
    <a href="https://smartdukaan.com/" class="nav-brand">
209
        <img src="$rc.contextPath/resources/images/sd-logo.jpg" alt="SmartDukaan" class="brand-logo">
210
    </a>
211
    <span class="nav-help">
212
        <a href="tel:1800270273" class="nav-call">
213
            <span class="call-word">Call</span>
214
            <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="#e1212a" stroke-width="2"
215
                 stroke-linecap="round" stroke-linejoin="round"><path
216
                    d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z"/></svg>
217
            <span class="phone">1800 270 273</span>
218
        </a>
219
    </span>
220
</div>
221
 
222
<div class="subhead">
223
    <a href="https://smartdukaan.com/" class="btn-home">
224
        <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
225
             stroke-linecap="round" stroke-linejoin="round">
226
            <path d="M3 9.5L12 3l9 6.5"/>
227
            <path
228
                    d="M5 10v10h14V10"/>
229
            <path d="M9 20v-6h6v6"/>
36686 ranu 230
        </svg>
36807 aman 231
        Home
232
    </a>
36642 ranu 233
</div>
36807 aman 234
 
235
<div class="status-card">
236
    <svg class="status-icon" width="76" height="76" viewBox="0 0 24 24"
237
         fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
238
        <circle cx="12" cy="12" r="10"></circle>
239
        <polyline points="12 6 12 12 16 14"></polyline>
240
    </svg>
241
    <h5 class="status-title">Under Review</h5>
242
    <p class="status-title-hi">समीक्षाधीन</p>
243
    <p class="status-text">
244
        Your information has been submitted and is currently under review by our team.
245
        You will be contacted once verification is complete.
246
        <span class="hindi">आपकी जानकारी सबमिट हो गई है और अभी हमारी टीम द्वारा इसकी समीक्षा की जा रही है। सत्यापन पूरा होते ही आपसे संपर्क किया जाएगा।</span>
247
    </p>
248
</div>
249
 
250
<div class="footer-help">
251
    Need help? Call
252
    <a href="tel:1800270273" class="footer-call">
253
        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
254
             stroke-linecap="round" stroke-linejoin="round">
255
            <path
256
                    d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z"/>
257
        </svg>
258
        1800 270 273
259
    </a>
260
</div>
261
<div class="geo-footer">
262
    &copy; 2026 SmartDukaan. All rights reserved.<br>
263
    Transforming mobile retail across India
264
</div>
265
 
36642 ranu 266
</body>
267
</html>