⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
hrms.dev-unit.com
/
resources
/
views
/
auth
/
View File Name :
verify-email.blade.php
@extends('layouts.auth') @section('page-title') {{ __('Verify Email') }} @endsection @section('language-bar') @php $languages = App\Models\Utility::languages(); if (empty($lang)) { $lang = App\Models\Utility::getValByName('default_language'); } @endphp <div class="lang-dropdown-only-desk"> <li class="dropdown dash-h-item drp-language"> <a class="dash-head-link dropdown-toggle btn" href="#" data-bs-toggle="dropdown" aria-expanded="false"> <span class="drp-text"> {{ ucFirst($languages[$lang]) }} </span> </a> <div class="dropdown-menu dash-h-dropdown dropdown-menu-end"> @foreach ($languages as $code => $language) <a href="{{ url('/verify-email', $code) }}" tabindex="0" class="dropdown-item {{ $code == $lang ? 'active' : '' }}"> <span>{{ ucFirst($language) }}</span> </a> @endforeach </div> </li> </div> @endsection @section('content') <div class="card-body"> @if (session('status') == 'verification-link-sent') <div class="mb-4 font-medium text-sm text-green-600 text-primary"> {{ __('A new verification link has been sent to the email address you provided during registration.') }} </div> @endif <div class="mb-4 text-sm text-gray-600"> {{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }} </div> <div class="custom-login-form"> <form method="POST" action="{{ route('verification.send') }}"> @csrf <div class="d-grid"> <button class="btn btn-primary mt-2" type="submit"> {{ __('Resend Verification Email') }} </button> </div> </form> <form method="POST" action="{{ route('logout') }}"> @csrf <button type="submit" class="btn btn-danger btn-sm mt-2"> {{ __('Logout') }} </button> </form> </div> </div> @endsection