-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathberhasil.php
24 lines (23 loc) · 859 Bytes
/
berhasil.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
include 'koneksi.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name ="viewport" content="width=device-width, initial-scale=1">
<title>PPDB ONLINE</title>
<link rel="stylesheet" type ="text/css" href="css/daftar.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Quicksand:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<!-- bagian box formulir -->
<section class= "box-formulir">
<h2>Pendaftaran Berhasil</h2>
<div class="box">
<h4>Kode pendaftaran anda adalah <?php echo $_GET['id']?></h4>
<a href="cetak-bukti.php?id=<?php echo $_GET['id'] ?> " target="_blank" class="btn-cetak">Cetak Bukti Daftar</a>
</div>
</section>
</body>
</html>