-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.php
127 lines (64 loc) · 3.01 KB
/
aboutus.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<! DOCTYPE html>
<?php
include("databaseCon.php");
include("function.php");
$error="";
?>
<html>
<head>
<title> About-Us </title>
<link rel="stylesheet" href="style.css" />
<meta charset="UTF-8" />
</head>
<body class="passchange">
<!-- &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-->
<?php
if( logged_in())
{
?>
<a href="profile.php" class="logout3"> Home </a>
<a href="logout.php" class="logout"> Logout <a/><br/><br/><br/><br/>
<?php
}
else
{
header("location :login.php");
exit();
}
?>
</body>
<!-- &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-->
<h1 class="logout5"><b> About-Us </b></h1>
<section>
<div id="aboutus">
<h1 style="color:blue;text-align:center;font-weight:bold;font-size:50px">Group Name : Dynamic Developers </h1>
<p style="color:black;text-align:center;font-weight:bold;font-size:30px"><b style="color:red">PROJECT NAME</b> : ব্যাচেলর বাড়ির হিসাব-নিকাশ</p>
<h3 style="color:blue;text-align:center;font-weight:bold;font-size:40px">Group Member-1 </h3>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Full Name : Tushar Mazhar Talukdar </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Id : 1521237042 </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Course : CSE-311 L </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Email : tusharmazhartalukdar@gmail.com </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Phone : 01787373498 </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Institution : North South University </p>
<h3 style="color:blue;text-align:center;font-weight:bold;font-size:40px">Group Member-2</h3>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Full Name : Porsia Tithi </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Id : ---------- </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Course : CSE-311 L </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Email : porsiatithi@gmail.com </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Phone : ---------- </p>
<p style="color:black;text-align:center;font-weight:bold;font-size:20px">Institution : North South University </p>
</div>
</section>
<?php
if(logged_in())
{
?>
<?php
}
else
{
header("location : profile.php");
}
?>
</body>
</html>