MIF_E31220442/resources/views/auth/verify.blade.php

35 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layouts.verify-email')
@section('title', __('Email Verification'))
@section('content')
<div class="verify-container">
<div class="verify-card">
<!-- Ikon Email -->
<div class="verify-icon"></div>
<!-- Judul -->
<h2 class="verify-title">{{ __('Verifikasi alamat email mu!') }}</h2>
<!-- Pesan Sukses (Jika Resend) -->
@if (session('resent'))
<div class="verify-alert">
{{ __('Link verifikasi sudah terkirim. Silahkan cek inbox email anda!') }}
<button type="button" class="verify-alert-close" onclick="this.parentElement.style.display='none'">×</button>
</div>
@endif
<!-- Instruksi -->
<p class="verify-text">
{{ __('Terimakasih sudah mendaftar, silahkan verifikasi email mu!') }}
</p>
<!-- Form Resend -->
<p class="verify-text">
{{ __() }}
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
@csrf
<button type="submit" class="verify-resend-btn">{{ __('Verifikasi sekarang') }}</button>
</form>
</p>
<!-- Tombol Kembali ke Beranda -->
<a href="{{ url('/') }}" class="verify-home-btn">{{ __('Kembali ke halaman Utama') }}</a>
</div>
</div>
@endsection