-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangePassword.aspx
106 lines (104 loc) · 5.1 KB
/
ChangePassword.aspx
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
<%@ Page Title="Change password" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="ChangePassword.aspx.cs" Inherits="ChangePassword" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style34
{
width: 100%;
}
.style35
{
width: 24px;
}
.style36
{
width: 142px;
}
.style37
{
width: 504px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table class="style34">
<tr>
<td>
<br />
<em><strong>Change Password</strong></em> </td>
</tr>
<tr>
<td>
<table class="style34">
<tr>
<td class="style35">
</td>
<td class="style37" valign="top">
<asp:Panel ID="Panel1" runat="server" BorderStyle="Outset"
DefaultButton="btnSubmit" Width="363px">
<table class="style34">
<tr>
<td class="style36" style="text-align: right">
</td>
<td>
<asp:Label ID="lblError" runat="server" ForeColor="Red"></asp:Label>
</td>
</tr>
<tr>
<td class="style36" style="text-align: right">
User Name:</td>
<td>
<asp:TextBox ID="txtUserName" runat="server" Enabled="False" Width="216px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style36" style="text-align: right">
Current Password:</td>
<td>
<asp:TextBox ID="txtCurrentPassword" runat="server" TextMode="Password"
Width="218px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style36" style="text-align: right">
</td>
<td>
</td>
</tr>
<tr>
<td class="style36" style="text-align: right">
New Password:</td>
<td>
<asp:TextBox ID="txtNewPassword" runat="server" TextMode="Password"
Width="218px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style36" style="text-align: right">
Confirm Password:</td>
<td>
<asp:TextBox ID="txtConfirmPassword" runat="server" TextMode="Password"
Width="218px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style36">
</td>
<td style="text-align: right">
<asp:Button ID="btnSubmit" runat="server" Height="29px"
onclick="btnSubmit_Click" style="text-align: center" Text="Submit"
Width="92px" />
</td>
</tr>
</table>
</asp:Panel>
</td>
<td>
<asp:Image ID="Image1" runat="server" Height="315px"
ImageUrl="~/Images/change_password.png" Width="284px" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Content>