forked from kishanrajput23/Java-Projects-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangeprofile.html
68 lines (58 loc) · 897 Bytes
/
changeprofile.html
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
<html>
<style>
h2{color:bottlegreen;font:700 20pt arial}
h4 {color:brwon;font:700 11pt verdana}
td {font:10pt verdana}
a {font:10pt verdana;color:navy}
</style>
<body bgcolor="beige">
<h2>Change Profile </h2>
<hr>
<form action="register.jsp" method="post">
<table>
<tr>
<td>
User Name
<td>
<input type=text name=uname size=20>*
</tr>
<tr>
<td>
Password
<td>
<input type=password name=pwd size=20>*
</tr>
<tr>
<td>
Confirm Password
<td>
<input type=password name=pwd2 size=20>*
</tr>
<tr>
<td>
Email Address
<td>
<input type=text name=email size=30>*
</tr>
<tr>
<td>Mailing Address
<td>
<textarea name="address" rows=3 cols=30></textarea>*
</td>
</tr>
<tr>
<td>
Phone Number
<td>
<input type=text name=phoneno size=30>
</tr>
</table>
<p>
<input type=submit value="Register">
<input type=reset value="Clear All">
<p>
<a href="login.html">Go Back</a>
</form>
</center>
</body>
</html>