Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 3.129.69.134
Web Server : Apache
System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.2.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/zvhope/public_html/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/zvhope/public_html/library1.php
<!--

library1.php
Purpose: Library first page
UPDATES:
	- JUST ADD MORE TO THE HOME PAGE
	- WAY FOR OTHERS TO CONNECT, LIKE SOCIAL MEDIA 
	- HASH PASSWORD PROTECTION
	- CENTER MENU BUTTONS/CREATE MORE OPTIONS
-->


<a href=logOut.php><button style=float:right id=logout>Log Out</button></a>

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Library Database</title>

<?php
	if($style == "libraryLoginStylesheet")
		echo '<link href="libraryLoginStylesheet.css" media="screen" rel="stylesheet" type="text/css" />';	
	 
	else
		echo '<link href="libraryLoginStylesheet.css" media="screen" rel="stylesheet" type="text/css" />';	
	
?>

</head>
<body>

<?php

	session_start();
	$user1 = $_SESSION['user1'];
	if($_SESSION['user1'] == null) { 
		header("location: libraryLogin.html");
		session_destroy();
	}
	else 
	{
?>

<center>
<h2>Online book database </h2>
</center>

<?php
	print "<h4>Welcome $user1 ! </h4>";
?>

<hr>
<div class="btn-group">

<A HREF=buyBooks.php><button class="button">Buy Books</button></A>

<A HREF=searchBooks1.php><button class="button">Search for a book</button></A>

<A HREF=submitBook1.php><button class="button">Submit a book</button> </A>

<A HREF=viewTable.php><button class="button">View book selections</button></A>

</div>
<A HREF="aboutUs.html"><p style=" position: absolute; left:600; bottom: 0; text-align: center;">About us</p></A>
<A HREF="mailto:zvhope@vwu.edu?subject=Feedback"><p style=" position: absolute; left: 700; bottom: 0; text-align: center;">Suggestions? Tell us!</p></A>

</center>

<?php
	}
?>

<style>
#logout{
    width: 75px;
    height: 30px;
    border: none;
    border-radius: 17px;
    padding-left: 7px;
    color: blue;
    position: absolute;
    right: 80px;
    top: 10px
}
</style>
</body>
</html>

Stv3n404 - 2023