forked from JayJayEvans/WaterBase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path:wq
More file actions
47 lines (45 loc) · 1.78 KB
/
:wq
File metadata and controls
47 lines (45 loc) · 1.78 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
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.right { text-align: right;
}
</style>
</head>
<body>
<center>
<table width="993" height="102" border="0">
<tr>
<td width="251" height="96"><img src="head.png" width="251" height="88" alt="Logo" /></td>
<td width="726" class="right">24X7 Customer Support - <a href="contact.jsp">Contact us</a> | <a href="main.jsp">Home</a> |
<% if(session.getAttribute("uname")==null) {
%>
<a href="login.jsp">Login</a>
<%} else {
%>
<a href="logout.jsp">Logout</a>
<%}%></td>
</tr>
</table>
<hr />
<strong><em>Register here</em></strong>
<form action="reg.jsp"><table><b>
<tr><td>Name</td><td><input type="text" name="name"></td></tr>
<tr><td>User ID</td><td><input type="text" name="id"></td></tr>
<tr><td>Password</td><td><input type="password" name="password"></td></tr>
<tr><td>Phone No.</td><td><input type="text" name="phone"></td></tr>
<tr><td>Date of Birth</td><td><input type="text" name="date"></td></tr>
<tr><td>Address</td><td><textarea name="address"></textarea></td></tr>
<br>
</b></table><br />
<input type="submit" value="Register" />
</form>
<br><hr>
Already Registered!! To Login <a href="login.jsp">Click Here</a>
<hr>
</center>
</body>
</html>