migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{__('Password Reset')}}</title>
<style>
.email-container{
justify-content: center;
/*display: grid;*/
background-color: #ffffff;
padding: 0 5%
}
.email-header{
text-align: center;
}
.email-header{
background-color: green;
padding: 10px;
}
.hyper-link
/* {
color: orangered;
}*/
.hyper-link:hover
{
color: #1c881c;
}
.email-btn{
border: 1px solid orange;
padding: 10px;
border-radius: 5px;
background-color: orange;
color: white;
text-decoration: none;
display: grid;
justify-content: center;
margin: 0 15rem;
text-align: center;
}
.email-btn:hover{
border: 1px solid #2ec618;
background-color: #22b31d;
color: #f4f4f4;
}
hr{
border: 1px solid #bbbbbb;
width: 100%
}
.copyright{
color: #248c48;
font-size: 11px;
text-align: center;
}
</style>
</head>
<body>
<div class="email-container">
<h2 class="email-header">{{ config('app.name') }}</h2>
<div class="email-body">
<p>{{ __('You are having this email because you have requested for a password reset.') }}</p>
<p>{{ __('Your verification code is: ') }}<b>{{ $data['code'] }}</b></p>
<p>{{ __('This password reset code will expire in 60 minutes.') }}</p>
<p>{{ __('If you did not request a password reset, no further action is required.') }}</p>
<p>{{ __('Regards') }},<br> {{ config('app.name') }}</p>
</div>
<hr>
<p class="copyright">&copy; {{ config('app.name') }}. {{ __('All right reserved') }}.</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #666;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 3px;
}
</style>
</head>
<body>
<div class="container">
<h1>{{ __('Welcome to') }} {{ env('APP_NAME') }}!</h1>
<p>{{ __('Your account has been created successfully.') }}</p>
<p>{{ __('Your OTP code is') }} <b class="text-dark">{{ $code ?? '' }}</b>. {{ __('Please do not share this PIN with anyone') }}.</p>
<p>{{ __('Best Regards,') }}<br>{{ env('APP_NAME') }}</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #666;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 3px;
}
.text-dark {
color: #000;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>{{ __('Hi,') }} {{ $mesasge['name'] ?? '' }}. {{ __('Welcome to') }} {{ env('APP_NAME') }}!</h1>
<p>{{ __('Your account has been created successfully.') }}</p>
<p><strong>{{ __('OTP:') }}</strong> {{ __('Dear') }} {{ $data['name'] ?? '' }}, {{ __('your OTP code is') }} <b class="text-dark">{{ $data['code'] ?? '' }}</b>. {{ __('Please do not share this PIN with anyone') }}.</p>
<p>{{ __('Best Regards,') }}<br>{{ env('APP_NAME') }}</p>
</div>
</body>
</html>