-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.php
executable file
·129 lines (107 loc) · 5.41 KB
/
home.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
128
129
<?php include('header.php');
session_start(); ?>
<div style="position:absolute; top:0; right:00px; background-color:#fff; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25); width:300px; height:79px;">
<div id="login_avatar" style="width:79px; height:79px; float:left; margin:0; background-image: url('<?php echo "http://www.gravatar.com/avatar/" . md5( strtolower( trim( $_SESSION['user_email'] ) ) ) . "?d=mm&s=50"; ?>')">
<!--<img id="login_avatar" src="img/ani_avatar_static_01.png" style="width:125px; height:125px;" />-->
</div>
<div style="width: 110px; height: 79px; float:left; margin:0; font-family: 'Droid Sans', sans-serif; color:#666666; font-size:12px; border:0; height:100%; line-height: 50px; padding-left:20px; padding-right: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;"><p>
Welcome, <?php echo $_SESSION['user_name']; ?></p>
</div>
<div class="login_logout">
<a href="index.php?logout" style="width:49px; height:19px; padding-top: 31px; display:block; text-align: center; font-size:10px; font-family: 'Droid Sans', sans-serif; color:#666666; border:0; background: transparent; cursor: pointer;" >Logout</a>
</div>
</div>
<body style="background: #f1f1f1 url(../img/bg/patterns/noise.png);>
<!-- Menu -->
<div id="menu">
<!-- ENDS menu-holder -->
<div id="menu-holder">
<!-- wrapper-menu -->
<div class="wrapper">
<!-- Navigation -->
<ul id="nav" class="sf-menu">
<li class="current-menu-item"><a href="home.php">Home<span class="subheader">Welcome</span></a></li>
<li class="project.html"><a href="project.php">Project<span class="subheader">About The Project</span></a></li>
<li class="howto.html"><a href="howto.php">How To Use<span class="subheader">Instructions</span></a></li>
<li class="aboutus.html"><a href="aboutus.php">About Us<span class="subheader">Who We Are</span></a></li>
<li class="contact.html"><a href="contact.php">Contact<span class="subheader">Get in touch</span></a></li>
<li class="software.html"><a href="software.php">Software<span class="subheader">Experiment</span></a></li>
</ul>
<!-- Navigation -->
</div>
<!-- wrapper-menu -->
</div>
<!-- ENDS menu-holder -->
</div>
<!-- ENDS Menu -->
<!-- Slider -->
<div id="slider-block">
<div id="slider-holder">
<div id="slider">
<a href="#"><img src="img/b3.jpg" title="Download the software and simulate the circuit" alt="" /></a>
<a href="#"><img src="img/b4.jpg" title="Download the software and simulate the circuit" alt="" /></a>
<a href="#"><img src="img/b1.jpg" title="Download the software and simulate the circuit" alt="" /></a>
<a href="#"><img src="img/b2.jpg" title="Download the software and simulate the circuit" alt="" /></a>
</div>
</div>
</div>
<!-- ENDS Slider -->
<!-- MAIN -->
<div id="main">
<!-- wrapper-main -->
<div class="wrapper">
<!-- headline -->
<div class="clear"></div>
<div id="headline">
<span class="main">Digital BreadBoard Simulator</span>
<span class="sub">Digital BreadBoard Simulator is a simple and free electronic circuit simulator</span>
<span class="sub">Download the software to simulate and to produce the matrix output. </span>
<a href="DBBS.zip" id="link" class="link-button-big"><span>Download The Software</span></a>
</div>
<!-- ENDS headline -->
</div>
<!-- ENDS wrapper-main -->
</div>
<!-- ENDS MAIN -->
<!-- FOOTER -->
<div id="footer">
<!-- wrapper-footer -->
<div class="wrapper">
<!-- footer-cols -->
<ul id="footer-cols">
<li class="col">
<h6>Pages</h6>
<ul>
<li class="page_item"><a href="home.php">Home</a></li>
<li class="page_item"><a href="project.php">Project</a></li>
<li class="page_item"><a href="howto.php">How To Use</a></li>
<li class="page_item"><a href="aboutus.php">About Us</a></li>
<li class="page_item"><a href="contact.php">Contact</a></li>
</ul>
</li>
<li class="col" style="width:582px">
<h6>About</h6>
" BREAD BOARD SIMULATOR is a software program that converts your personal computer into a fully-functioning electronics laboratory with thousands of components and devices that are easily interconnected. This Site provides a plateform for powerful schematic design and simulation virtually. It gives you the flexibility to design and test electronic circuits, trying all the "what if" scenarios without ever worrying about faulty parts or bad connections. "
</ul>
<!-- ENDS footer-cols -->
</div>
<!-- ENDS wrapper-footer -->
</div>
<!-- ENDS FOOTER -->
<!-- Bottom -->
<div id="bottom">
<!-- wrapper-bottom -->
<div class="wrapper">
<div id="bottom-text">All Rights Reserved. <a href="https://www.facebook.com/AsyncTech">AsyncTech</a> </div>
<!-- Social -->
<ul class="social ">
<li><a href="https://www.facebook.com/AsyncTech" class="poshytip facebook" title="Become a fan"></a></li>
</ul>
<!-- ENDS Social -->
<div id="to-top" class="poshytip" title="To top"></div>
</div>
<!-- ENDS wrapper-bottom -->
</div>
<!-- ENDS Bottom -->
</body>
<?php include('footer.php'); ?>