19 lines
775 B
PHP
19 lines
775 B
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>TEAM</title>
|
|
<link rel="stylesheet" type="text/css" href="asset/css/bootstrap.css" />
|
|
<link rel="stylesheet" type="text/css" href="asset/css/style.css" />
|
|
</head>
|
|
<body>
|
|
Halaman Profile </br>
|
|
Login as : <?php echo $_SESSION['username'] ?>
|
|
|
|
<a href="<?php base_url ?>home.php">Home</a>
|
|
<a href="<?php base_url ?>profile.php?id=<?php echo $_SESSION['username'] ?>">Profile</a>
|
|
<a href="<?php base_url ?>home.php?action=logout">Logout</a>
|
|
</body>
|
|
</html>
|