-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
88 lines (69 loc) · 2.27 KB
/
Copy pathdashboard.php
File metadata and controls
88 lines (69 loc) · 2.27 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
session_start();
if(!isset($_SESSION["user"]))
{
echo "<script>alert('Session anda belum terdaftar, silakan login kembali'); document.location='login.php';</script>";
}else
{
?>
<!DOCTYPE html>
<html>
<title>TUGAS PIL</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="asset/css/w3.css">
<style>
body {
background-color: #FFECD1;
}
.w3-button {
background-color: #0B3954;
color: white;
padding: 10px 37px;
border-radius: 10px;
transition: 0.3s;
}
.button-container {
padding-top: 35px;
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-orange w3-wide w3-padding w3-card">
<a href="" class="w3-bar-item w3-button w3-orange">Dashboard</a>
<a href="logout.php" class="button-container w3-bar-item w3-button w3-sienna w3-right">LogOut</a>
</div>
</div>
<!-- Page content -->
<div class="w3-content w3-padding " style="max-width:870px ">
<!-- Contact Section -->
<div class="w3-container w3-padding-32" id="contact">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Chose Menu</h3>
<!-- <h4><p class="w3-center ">Choose Menu.</p></h4> --><br><br><br><br><br><br>
<div class="w3-row">
<div class="button-container w3-col w3-container w3-center m6">
<a href="addbiodata.php" class="w3-button w3-border w3-xxxlarge w3-#0B3954">Add Biodata</a>
</div>
<div class="button-container w3-col w3-container w3-center m6">
<a href="viewbiodata.php" class="w3-button w3-border w3-xxxlarge w3-#0B3954">Daftar Biodata</a>
</div>
<div class="button-container w3-col w3-container w3-center m6">
<a href="profilbiodata.php" class="w3-button w3-border w3-xxxlarge w3-#0B3954">Daftar Profil</a>
</div>
<div class=" button-container w3-col w3-container w3-center m6">
<a href="updatebiodata.php" class="w3-button w3-border w3-xxxlarge w3-#0B3954">Update Biodata</a>
</div>
</div>
</div>
<!-- End page content -->
</div>
<!-- Footer -->
<footer class="w3-bottom w3-center w3-sienna w3-padding-16">
<p>Powered by <a href="Eror.php" title="W3.CSS" target="blank" class="w3-hover-text-blue">Amat</a></p>
</footer>
</body>
</html>
<?php
};
?>