187 lines
5.1 KiB
PHP
187 lines
5.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Pengiriman Email - SIA</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
body {
|
|
/* Desain minimalis dan modern (Dark mode glassmorphism) */
|
|
background: linear-gradient(135deg, #0f172a, #1e293b);
|
|
color: #ffffff;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.container {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(12px);
|
|
-webkit-backdrop-filter: blur(12px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 16px;
|
|
padding: 40px;
|
|
width: 100%;
|
|
max-width: 420px;
|
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.container:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
h2 {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
text-align: center;
|
|
color: #f8fafc;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
p.subtitle {
|
|
font-size: 14px;
|
|
color: #94a3b8;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin-bottom: 8px;
|
|
color: #e2e8f0;
|
|
}
|
|
|
|
input[type="email"] {
|
|
width: 100%;
|
|
padding: 14px 16px;
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
background: rgba(0, 0, 0, 0.2);
|
|
color: #ffffff;
|
|
font-size: 15px;
|
|
outline: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
input[type="email"]:focus {
|
|
border-color: #3b82f6;
|
|
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
|
|
background: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
input[type="email"]::placeholder {
|
|
color: #64748b;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
padding: 14px;
|
|
border-radius: 10px;
|
|
border: none;
|
|
background: linear-gradient(135deg, #3b82f6, #2563eb);
|
|
color: white;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
|
|
}
|
|
|
|
button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
|
|
}
|
|
|
|
button:active {
|
|
transform: scale(0.98);
|
|
}
|
|
|
|
.alert {
|
|
padding: 14px;
|
|
border-radius: 10px;
|
|
margin-bottom: 24px;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.alert-success {
|
|
background: rgba(16, 185, 129, 0.1);
|
|
border: 1px solid rgba(16, 185, 129, 0.3);
|
|
color: #34d399;
|
|
}
|
|
|
|
.alert-error {
|
|
background: rgba(239, 68, 68, 0.1);
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
color: #f87171;
|
|
}
|
|
|
|
.back-link {
|
|
display: block;
|
|
text-align: center;
|
|
margin-top: 24px;
|
|
color: #94a3b8;
|
|
font-size: 14px;
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.back-link:hover {
|
|
color: #ffffff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Kirim Email Uji Coba</h2>
|
|
<p class="subtitle">Platform Akuntansi Terintegrasi</p>
|
|
|
|
@if(session('success'))
|
|
<div class="alert alert-success">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
@if($errors->any())
|
|
<div class="alert alert-error">
|
|
<ul>
|
|
@foreach($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
<form action="{{ url('/test-email') }}" method="POST">
|
|
@csrf
|
|
<div class="form-group">
|
|
<label for="email">Alamat Email Tujuan</label>
|
|
<input type="email" id="email" name="email" placeholder="nama@perusahaan.com" required autocomplete="email">
|
|
</div>
|
|
<button type="submit">Kirim Email</button>
|
|
</form>
|
|
|
|
<a href="{{ url('/') }}" class="back-link">← Kembali ke Halaman Utama</a>
|
|
</div>
|
|
</body>
|
|
</html>
|