-
Notifications
You must be signed in to change notification settings - Fork 6
/
start.php
39 lines (32 loc) · 1.04 KB
/
start.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
<?php
session_start();
if(!isset($_SESSION["username"])){
header("Location: index.php");
exit(); }
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="start.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Document</title>
</head>
<body>
<img class="clipart" src="book clipart.png"/>
<div class="login">
<h1 >Welcome !!</h1>
<br><br><br><br><br><br>
<a href = "basicdiary.php ">Write today's Diary..</a><br>
<a href ="tips.html"> Tips to maintain a diary..</a>
<br>
</div>
<div class="icon-bar">
<a href="logout.php"><i class="fa fa-home"></i></a>
<a href="display.php"><i class="fa fa-calendar"></i></a>
<a href="message.php"><i class="fa fa-envelope"></i></a>
<a href="feedback.php"><i class="fa fa-pencil"></i></a>
</div>
</body>
</html>