-
Notifications
You must be signed in to change notification settings - Fork 1
/
reg.jsp
104 lines (97 loc) · 3.73 KB
/
reg.jsp
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
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<link href="images/favicon.jpg" type="image" rel="icon"/>
<title>Housing</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="layout/styles/layout.css" type="text/css" />
<script type="text/javascript" src="layout/scripts/jquery.min.js"></script>
<!-- Waterwheel Carousel -->
<script type="text/javascript" src="layout/scripts/carousel/jquery.waterwheelCarousel.min.js"></script>
<script type="text/javascript" src="layout/scripts/carousel/jquery.waterwheelCarousel.setup.js"></script>
<!-- / Waterwheel Carousel -->
</head>
<body id="top">
<div class="wrapper col1">
<div id="header">
<div class="fl_left">
<h1><a href="index.html">Housing</a></h1>
<p style="indent:20">- making life simpler..</p>
</div>
<div class="fl_right"><a href="#"><img src="images/demo/logo.jpg" alt="" /></a></div>
<br class="clear" />
</div>
</div>
<!-- ####################################################################################################### -->
<div class="wrapper col2">
<div id="topbar">
<div id="topnav">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="https://housing.com/about">About-Us</a></li>
<li><a href="https://housing.com/blog">Blog</a></li>
<li><a href="#">Services <b>⇩<b></a>
<ul>
<li><a href="login.jsp">Seller</a></li>
<li><a href="visitor.jsp">Buyer</a></li>
</ul>
</li>
<li class="last"><a href="contact.html">Contact-Us</a></li>
</ul>
</div>
<br class="clear" />
</div>
</div>
<!-- ####################################################################################################### -->
<form method="post" action="registration1.jsp">
<center>
<table border="1" width="30%" cellpadding="5">
<thead>
<tr>
<th colspan="2">Enter Seller Information Here</th>
</tr>
</thead>
<tbody>
<tr>
<td>First Name</td>
<td><input type="text" name="fname" value="" /></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="lname" value="" /></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="email" value="" /></td>
</tr>
<tr>
<td>Seller Name</td>
<td><input type="text" name="uname" value="" /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="pass" value="" /></td>
</tr>
<tr>
<td><input type="submit" value="Submit" /></td>
<td><input type="reset" value="Reset" /></td>
</tr>
<tr>
<td colspan="2">Already registered!! <a href="login.jsp">Login Here</a></td>
</tr>
</tbody>
</table>
</center>
</form>
<hr color="grey">
<!-- ####################################################################################################### -->
<div class="wrapper col6">
<div id="copyright">
<p class="fl_left">Copyright © 2014 - All Rights Reserved</p>
<p class="fl_right"> Made by Hunters...</p>
<br class="clear" />
</div>
</div>
</body>
</html>