Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/www/storage/framework/views/ |
<!DOCTYPE html>
<html>
<head>
<title>Stripe Onboarding</title>
<!-- IMPORTANT for mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background: #f5f7fa;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
padding: 20px;
}
.card {
background: #fff;
width: 100%;
max-width: 400px;
padding: 30px 20px;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
text-align: center;
}
h2 {
font-size: 22px;
margin-bottom: 10px;
}
p {
font-size: 14px;
color: #555;
margin-bottom: 25px;
line-height: 1.5;
}
.btn {
display: block;
width: 100%;
padding: 14px;
font-size: 16px;
border-radius: 8px;
text-decoration: none;
color: #fff;
margin-top: 10px;
}
.success {
background: #28a745;
}
.primary {
background: #007bff;
}
.warning {
background: #07641fcc;
}
.icon {
font-size: 40px;
margin-bottom: 15px;
}
/* Mobile tweaks */
@media (max-width: 480px) {
h2 {
font-size: 20px;
}
p {
font-size: 13px;
}
.btn {
font-size: 15px;
padding: 12px;
}
}
</style>
</head>
<body>
<div class="card">
<a class="hide-desktop hide-tab" href="<?php echo e(url('/')); ?>">
<img class="img-responsive" src="<?php echo e(asset('/themes/frontend_new/assets/img/logo-tradze.svg')); ?>" />
</a>
<?php if($status === 'completed'): ?>
<div class="icon">✅</div>
<h2>Stripe Account</h2>
<h2>Account Ready</h2>
<p>You can now receive payments.</p>
<a href="myapp://stripe-success" class="btn success">
Go Back to App
</a>
<?php elseif($status === 'pending'): ?>
<div class="icon">⏳</div>
<h2>Stripe Account</h2>
<h2>Under Review</h2>
<p>Your account is being verified. This may take some time.</p>
<a href="myapp://stripe-pending" class="btn primary">
Go Back to App
</a>
<?php else: ?>
<div class="icon">⚠️</div>
<h2>Stripe Account</h2>
<h2>Incomplete</h2>
<p>Please complete your onboarding to start receiving payments.</p>
<a href="<?php echo e(url('/stripe/refresh?token=' . request('token'))); ?>" class="btn warning">
Continue Onboarding
</a>
<?php endif; ?>
</div>
</body>
</html>