44 lines
1.4 KiB
PHP
Executable File
44 lines
1.4 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html style="height: 100%;" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>redirect</title>
|
|
|
|
</head>
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: mf;
|
|
src: url('/assets/mf.ttf');
|
|
}
|
|
|
|
body {
|
|
font-family: mf;
|
|
}
|
|
</style>
|
|
|
|
<body style="height: 100%;">
|
|
<div class="h-100 d-flex flex-column align-items-center justify-content-center">
|
|
@if(!$status)
|
|
<i style="font-size: 5rem;" class="<bi bi-x-circle-fill text-danger mb-3"></i>
|
|
<div class="alert alert-danger">
|
|
پرداخت ناموفق
|
|
</div>
|
|
@else
|
|
<i style="font-size: 5rem;" class="bi bi-check-circle-fill text-success mb-3"></i>
|
|
<div class="alert alert-success">
|
|
پرداخت موفق
|
|
</div>
|
|
@endif
|
|
<a role="button" tabindex="-1" class="btn btn-primary mt-4 px-5" href="{{$redirect_link . '?status=' . (int) $status}}">بازگشت به اپ</a>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|