Revert "merge 1"

This reverts commit 0bc6c20a6d.
This commit is contained in:
2022-10-24 01:03:43 +01:00
parent 0bc6c20a6d
commit 0c463d1f10
166 changed files with 1849 additions and 4266 deletions

View File

@@ -9,13 +9,13 @@
@if (session()->has('error'))
<script>
toastr.error('{{session()->get('error')}}', '{{__('Error')}}')
toastr.error('{{session()->get('error')}}', '{{__('messages.global_error')}}')
</script>
@elseif (session()->has('success'))
<script>
toastr.success('{{session()->get('success')}}', '{{__('Success')}}')
toastr.success('{{session()->get('success')}}', '{{__('messages.global_success')}}')
</script>
@endif

View File

@@ -9,11 +9,7 @@
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/4.8.95/css/materialdesignicons.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" />
<script src="https://kit.fontawesome.com/2d0b1aecfa.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/css/login.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
</head>
<body>

View File

@@ -3,15 +3,20 @@
<div class="row">
<div class="col">
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank"><img src="{{ asset('img/gplv3-with-text-84x42.png') }}" alt="gnu gpl v3 logo"></a>
&nbsp;
<a href="{{ config('app.source_repo') }}" target="_blank"><img src="{{ asset('img/GitHub-Mark-32px.png') }}" alt="github wordmark repo link"></a>
<li class="d-inline-block">
<a class="mr-3" href="https://github.com/GamesClubOficial/rbrecruiter-gc"><i class="fas fa-code-branch"></i> {{ __('Gitea') }}</a>
<a class="mr-3" href="https://github.com/GamesClubOficial/rbrecruiter-gc/issues"><i class="fas fa-bug"></i> {{ __('Issue Tracker') }}</a>
</li>
</div>
<div class="col-4 d-inline-block">
<p>{!! __('Copyright &copy; :currentYear :authorName &mdash; <a href="licenseTextURL">:licenseFullName</a>', ['authorName' => 'Miguel Nogueira', 'currentYear' => now()->year, 'licenseTextURL' => 'https://www.gnu.org/licenses/gpl-3.0.en.html', 'licenseFullName' => 'GNU GPL v3']) !!}</p>
<p>&copy; Miguel N. {{ \Carbon\Carbon::now()->year }}&mdash; <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">{{ __('GNU General Public License') }}</a></p>
</div>

View File

@@ -59,6 +59,9 @@
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script id="help-ukraine-win" async="true" src="https://helpukrainewinwidget.org/cdn/widget.js" data-type="four" data-position="bottom-left"></script>
</head>
<!--Main Navigation-->
@@ -110,7 +113,7 @@
<div class="container text-center white-text">
<div class="white-text text-center wow fadeInUp">
<h2>{{config('app.name')}}</h2>
<h5>{{ __('Welcome to the :appName Recruitment Portal!', ['appName' => config('app.name')]) }}</h5>
<h5>{{ __('Welcome to the Games Club Recruitment Portal!') }}</h5>
<br>
<p>{{ __('We process applications for our Discord server\'s management team here. If you have any questions, don\'t hesistate to contact our support team! Take a look at the open jobs below.') }}</p>
<p>{!! __('If you\'d like to learn more about our community, make sure to visit our <a href=":mainWebsiteUrlConfigValue" target="_blank">main website</a>!', ['mainWebsiteUrlConfigValue' => config('app.sitehomepage')]) !!}</p>