-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsukses.php
22 lines (22 loc) · 897 Bytes
/
sukses.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pendaftaran Sukses</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div class="min-h-screen bg-gray-100 flex items-center justify-center p-4">
<div class="max-w-md w-full bg-white rounded-xl shadow-lg p-8">
<h2 class="text-2xl font-bold text-gray-900 mb-6 text-center">Anda Berhasil Mendaftar</h2>
<p class="text-center mb-6">Silakan login untuk melanjutkan.</p>
<div class="text-center">
<a href="Masuk.php" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-2.5 rounded-lg transition-colors block text-center">
Ke Halaman Login
</a>
</div>
</div>
</div>
</body>
</html>