-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
131 lines (116 loc) · 2.95 KB
/
Copy pathindex.jsp
File metadata and controls
131 lines (116 loc) · 2.95 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
121
122
123
124
125
126
127
128
129
130
131
<%@ 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;">Last
Date of fee Submission is 15/10/20 After that You'll have to pay
500 rupees per day as a fine and your tution fee exclusively </marquee>
</div></td>
</tr>
</table>
<center>
<a href="admin.jsp"><font style="color: navy;">Login As
Administrator</font></a>
</center>
<div id="sidebar">
<div class="box">
<form method="post" action="loginprocess.jsp">
<table>
<tr>
<td style="color: navy;"><B> Login Form</B></td>
</tr>
<tr>
<td><br></td>
</tr>
<tr>
<td>Branch:</td>
<td><select name="branch">
<option>Select a Branch</option>
<option>Bhubaneswar</option>
<option>Cuttack</option>
<option>Jajpur</option>
</select></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>
</div>
</div>
<br class="clear" />
</div>
<div id="header">
<h4>
Copyright 2020 All rights reserved.fore more information please
visit: <a href="www.pradip.com"><font style="color: yellow;">shonu.com</font></a>
</h4>
</div>
</div>
</body>
</html>