-
Notifications
You must be signed in to change notification settings - Fork 0
/
module-navbar.php
85 lines (84 loc) · 3.83 KB
/
module-navbar.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
<?php require_once('module-google-analytics.php'); ?>
<?php require_once('module-session-info.php'); ?>
<script type="text/javascript" src="script/ajax-alumni-login.js"></script>
<table class="table-header" id="header_table" cellpadding="0" cellspacing="0" width="100%" border="0">
<tr>
<td class="td-login-space" align="center" valign="top">
<?php
if($li_privilege=="GUEST")
{
?>
<table class="table-fixed-width table-alumreg" style="height: 66px;">
<tr valign="top">
<td colspan="2"> </td>
</tr>
<tr valign="top"><td width="100px">Email</td><td>
<input class="formitems" id="al_email" type="text" name="email" maxlength="256" style="width: 300px" />
</td></tr>
<tr valign="top"><td>Password</td><td>
<input class="formitems" id="al_password" type="password" name="password" maxlength="32" style="width: 300px" />
</td></tr>
<tr valign="top"><td> </td><td>
<span id="al_busystatus" style="display:none">Uploading data...</span>
<input class="formitems" id="al_submit" type="submit" name="submit" value=" Log in " onclick="doAlumniLogin()" />
</td></tr>
<tr valign="top"><td> </td><td>
<span id="al_feedback" class="formfeedbackmsgred"></span>
</td></tr>
</table>
<?php
}
else
{
?>
<table class="table-fixed-width table-alumreg" style="height: 66px;">
<tr valign="top">
<td> </td>
</tr>
<tr valign="top">
<td>
You are logged in as <br /><br />
<b><?php echo $li_firstname . " " . $li_lastname ?></b><br />
(<?php echo $li_user; ?>)<br />
<a class="navbar-link" href="logout.php">Logout</a>
</td>
</tr>
</table>
<?php
}
?>
</td>
</tr>
<tr>
<td class="td-navbar" align="center" valign="top">
<table class="table-fixed-width" style="height: 66px;">
<tr>
<td valign="middle" align="left">
<a class="navbar-link" href="home.php">HOME</a>
·
<a class="navbar-link" href="what-is.php">WHAT IS?</a>
·
<a class="navbar-link" href="alum-reg.php">SPREAD THE WORD</a>
·
<a class="navbar-link" href="reg-zone.php">REGISTERED USERS</a>
</td>
<td align="right" valign="middle">
<a href="http://www.tribute2jolu.com"><span class="masthead">TRIBUTE 2 JOLU</span></a>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="nub-central" align="center" valign="top">
<div class="nubs">
<a id="toggleButtonOn" style="display: inline-block;" href="#" onmouseover="toggleTip(1)" onmouseout="toggleTip(0)" onclick='toggleLoginSpace(1);'><img src="style/nub.png" height="20" width="40" border="0"/></a>
<a id="toggleButtonOff" style="display: none;" href="#" onmouseover="toggleTip(1)" onmouseout="toggleTip(0)" onclick='toggleLoginSpace(0);'><img src="style/nub.png" height="20" width="40" border="0"/></a>
</div>
<br />
<div id="nubsTips" class="nubs-tips">
<div id="nubsTipsContent" class="nubs-tips-content">Slide down the Login Panel</div>
</div>
</td>
</tr>
</table>