-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathregistrasi.php
41 lines (32 loc) · 972 Bytes
/
registrasi.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
// mulai session
session_start();
include 'connect-db.php';
include 'functions/functions.php';
cekLogin();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php include "headtags.html"; ?>
<title>Registrasi</title>
</head>
<body>
<!-- header -->
<?php include 'header.php'; ?>
<!-- end header -->
<h3 class="header light center">Halaman Registrasi</h3>
<br>
<!-- body -->
<div class="container center">
<a id="download-button" class="btn-large waves-effect waves-light blue darken-3" href="registrasi-pelanggan.php">Registrasi Sebagai Pelanggan</a>
<a id="download-button" class="btn-large waves-effect waves-light blue darken-3" href="registrasi-agen.php">Registrasi Sebagai Agen</a>
</div>
<!-- body -->
<!-- footer -->
<?php include "footer.php"; ?>
<!-- end footer -->
</body>
</html>