first commit

This commit is contained in:
2025-09-10 15:28:46 +03:30
commit 00edec179a
204 changed files with 21024 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>redirect</title>
</head>
<body>
</body>
<script language="javascript" type="text/javascript">
function postRefId(refIdValue, mobile) {
console.log(refIdValue)
var form = document.createElement("form");
form.setAttribute("method", "POST");
form.setAttribute("action",
"https://asan.shaparak.ir");
form.setAttribute("target", "_self");
var hiddenField = document.createElement("input");
hiddenField.setAttribute("name", "RefId");
hiddenField.setAttribute("value", refIdValue);
form.appendChild(hiddenField);
var hiddenField = document.createElement("input");
hiddenField.setAttribute("name", "mobileap");
hiddenField.setAttribute("value", mobile);
form.appendChild(hiddenField);
document.body.appendChild(form);
form.submit();
document.body.removeChild(form);
}
postRefId(<?php echo json_encode($token); ?>,<?php echo json_encode($mobile); ?>);
</script>
</html>
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<body style="text-align: right; font-family: Tahoma, Arial, sans-serif;">
<h2>کد تأیید شما برای {{ config('app.name') }}</h2>
<p>:برای تأیید ایمیل خود از کد زیر استفاده کنید</p>
<h1>{{ $code }}</h1>
<p>.این کد تا ۱۵ دقیقه معتبر است</p>
</body>
</html>
+43
View File
@@ -0,0 +1,43 @@
<!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>
+1
View File
@@ -0,0 +1 @@
<img{!! $attributeString !!}@if($loadingAttributeValue) loading="{{ $loadingAttributeValue }}"@endif src="{{ $media->getUrl($conversion) }}" alt="{{ $media->name }}">
@@ -0,0 +1,6 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" x="0"
y="0" viewBox="0 0 {{ $originalImageWidth }} {{ $originalImageHeight }}">
<image width="{{ $originalImageWidth }}" height="{{ $originalImageHeight }}" xlink:href="{{ $tinyImageBase64 }}">
</image>
</svg>

After

Width:  |  Height:  |  Size: 429 B

@@ -0,0 +1 @@
<img{!! $attributeString !!}@if($loadingAttributeValue) loading="{{ $loadingAttributeValue }}"@endif srcset="{{ $media->getSrcset($conversion) }}" src="{{ $media->getUrl($conversion) }}" width="{{ $width }}" height="{{ $height }}">
@@ -0,0 +1 @@
<img{!! $attributeString !!} @if($loadingAttributeValue) loading="{{ $loadingAttributeValue }}"@endif srcset="{{ $media->getSrcset($conversion) }}" onload="window.requestAnimationFrame(function(){if(!(size=getBoundingClientRect().width))return;onload=null;sizes=Math.ceil(size/window.innerWidth*100)+'vw';});" sizes="1px" src="{{ $media->getUrl($conversion) }}" width="{{ $width }}" height="{{ $height }}">
File diff suppressed because one or more lines are too long