-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbts.php
executable file
·91 lines (69 loc) · 3.31 KB
/
bts.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
<?php
session_start();
require_once "config.php";
if (!isset($_SESSION["un"])) {
header("Location:login.php");
}
if (isset($_SESSION['un'])) {
$username = $_SESSION['un'];
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Home</title>
<?php include 'linkers.php';?>
</head>
<body onload="set()">
<div class="main">
<?php require 'nav2.php';?>
<div class="titlebts">
<div class="home-img">
<a href="home.php"> <img class="home-img" src="Images/Name.png"> </a>
</div>
<h4>An Online Contest Platform</h4>
</div>
<div class="credit-header"> Developed By: </div>
<div class="container" style="background: #FFFFFF; min-height: 340px;">
<div class="rowbts row">
<div class="col-md-6 text-center " style="width: 50%;display: inline-block;">
<img class="image-box" src="Images/ranak.jpg" alt="Farhad">
<p class="credit-title">MD. Rakibul Hasan</p>
<p class="credit-details"> </p>
<ul class="list-group">
<li class="list-group-item"> 2nd Year 2nd Semester <br>Dept. of SWE <br> Shahjalal University of Science & Technology <br> </li>
</ul>
<p></p>
<div class="fa-links">
<a style="color: black" href="https://fb.me/ranak127" target="_blank"> <i class="fab fa-facebook-f" aria-hidden="true"></i> </a>
<a style="color: black" href="mailto:[email protected]" target="_blank"> <i class="fa fa-envelope" aria-hidden="true"></i> </a>
<a style="color: black"href="" target="_blank"> <i class="fab fa-linkedin-in" aria-hidden="true"></i> </a>
<a style="color: black"href="https://github.com/RakibulRanak" target="_blank"> <i class="fab fa-github" aria-hidden="true"></i> </a>
</div>
</div>
<div class="col-md-6 text-center" style="width: 50%;display: inline-block;">
<img class="image-box" src="Images/bala.jpg" alt="Talat">
<p class="credit-title">Dipankar Bala</p>
<p class="credit-details"> </p>
<ul class="list-group">
<li class="list-group-item"> 2nd Year 2nd Semester <br>Dept. of SWE <br> Shahjalal University of Science & Technology <br> </li>
</ul>
<p> </p>
<div class="fa-links">
<a style="color: black" href=""> <i class="fab fa-facebook-f" aria-hidden="true"></i> </a>
<a style="color: black" href="">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a style="color: black" href=""> <i class="fab fa-linkedin-in" aria-hidden="true"></i>
</a>
<a style="color: black" href=""> <i class="fab fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
<?php require 'footer.php';?>
</body>
</html>