-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.jsp
More file actions
120 lines (96 loc) · 2.38 KB
/
Copy pathadmin.jsp
File metadata and controls
120 lines (96 loc) · 2.38 KB
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
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<html>
<head>
<title>Welcome Page</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="outer">
<div id="header">
<div id="logo">
<h1>Payment Billing System</h1>
</div>
</div>
<div id="banner">
<div class="captions">
<h2>Sign in</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>
<%
if (request.getAttribute("notlogin_msg") != null) {
out.print("<font size='2' color='red' m>");
out.print(request.getAttribute("notlogin_msg"));
out.print("</font>");
}
%>
<%
if (request.getAttribute("Error") != null) {
out.print("<font size='2' color='red' m>");
out.print(request.getAttribute("Error"));
out.print("</font>");
}
%>
<div id="main">
<table align="right">
<tr align="center">
<td style="color: navy;"><B>Notice</B></td>
</tr>
<tr>
<td><div>
<marquee direction="up" width="300px" truespeed="truespeed"
onmouseover="stop()" onmouseout="start()" style="color: red;">Welcome
Administrator sir. You Can Visit a lot of information about my
various Branches.and Accountants </marquee>
</div></td>
</tr>
</table>
<h3 style="color: navy;" align="center">
<B>Consultant:- Pradip</B>
</h3>
<div id="box">
<form method="post" action="aloginprocess.jsp">
<table>
<tr>
<td style="color: navy;"><B> Login Form</B></td>
</tr>
<tr>
<td><br></td>
</tr>
<tr>
<td>User Name:</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td><br></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="userpass" /></td>
</tr>
<tr>
<td><br></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Sign in"></td>
</tr>
</table>
</form>
<br>
</div>
</div>
</div>
</body>
<jsp:include page="footer.jsp"></jsp:include>
</html>