-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.jsp
More file actions
36 lines (27 loc) · 738 Bytes
/
Copy pathheader.jsp
File metadata and controls
36 lines (27 loc) · 738 Bytes
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
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<html>
<link rel="stylesheet" type="text/css" href="style.css" />
<div id="header">
<div id="logo">
<h1>Payment Billing System</h1>
</div>
</div>
<div id="banner">
<div class="captions">
<h2>
<a href="logout.jsp"><font style="color: lime"></font>Log out</a>
</h2>
</div>
<img src="images/banner.jpg" alt="" />
</div>
<div id="nav">
<ul>
<li class="first"><a href="home.jsp">Home</a></li>
<li><a href="generalinfo.jsp">New Registration</a></li>
<li><a href="modify.jsp">Modify Detail</a></li>
<li><a href="ahome.jsp">Administrator</a></li>
<li><a href="contactus.jsp">Contact us</a></li>
</ul>
<br class="clear" />
</div>
</html>