-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.php
56 lines (56 loc) · 1.22 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<HTML>
<HEAD>
<TITLE>Indian Railways</TITLE>
<style type="text/css">
@import url(style.css);
#logo {
border-radius: 25px;
border: 1px solid blue;
width: 100px;
height: 100px;
}
* {
color: white;
}
html {
background: url(img/bg7.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#main {
width:700px;
height: 400px;
margin: 0 auto;
margin-top: 30px;
color:white;
border-radius: 25px;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
background-color: rgba(0,0,0,0.3);
}
</style>
</HEAD>
<BODY>
<?php
session_start();
include("header.php"); ?>
<div id="main"><div id="logo">
<A HREF="index.php">
<IMG SRC="img/logo.png" alt="Home" id="logo" width="150" height="150"></IMG>
</A></div>
<h1 align="center">Welcome to Indian Railways!</h1><br/><br/><br/>
<h2 align="center">Have a safe journey with us</h2>
<br/><br/><br/>
<?php
if(isset($_SESSION['user_info']))
echo '<h3 align="center"><a href="booktkt.php">Book here</a></h3>';
else
echo '<h3 align="center"><a href="register.php">Please register/login before booking</a></h3>';
?>
</div>
</BODY>
</HTML>