-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
65 lines (47 loc) · 2.04 KB
/
Copy pathindex.php
File metadata and controls
65 lines (47 loc) · 2.04 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
<?php
session_start();
// echo "Session Array:";
// print_r($_SESSION);
// echo "\n";
// echo "Sess_ID ";
// echo SESSION_ID();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Rest-o-Matic</title>
<link rel="icon" type="image/x-icon" href="images/icon/web_icon.png"/>
<link rel="stylesheet" href="bootstrap-5.2.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/general.css">
</head>
<body>
<div class = "container-fluid" style ="background-image: url(images/bg/home-bg2.png); background-repeat:no-repeat; height:100vh; width:100vw; ">
<div class = "row">
<nav class="navbar mynavbar" style = "min-width:100%;">
<div class="d-flex flex-row mx-5">
<img src="images/icon/web_icon.png" alt="web_icon.png" style="max-height: 70px;">
<!-- <span class="navbar-brand mb-0 myheading1"></span> -->
<a type ="button" class ="mybtn4" href = "login.php">LOGIN</a>
<a type ="button" class ="mybtn4" href="about_us.php">ABOUT US</a>
</div>
</nav>
</div>
<div class ="row" >
<!-- height: 91.5vh; width: 90wh; -->
<div class = "">
<h1 class = "mytitle1" style ="padding: 50px 0px 0px 50px">REST-O-MATIC!</h1>
<h6 class ="mytitle2" style ="padding: 0px 0px 0px 65px;">WELCOME TO REST-O-MATIC!
CLICK A FEW BUTTONS AND WAIT</h6>
</div>
<div style = "float:right;">
<a type = "button" class ="mybtn4 myfixedbtn"
href = "func/func_set_guest.php"
>BROWSE</a>
</div>
</div>
</div>
</body>
</html>