4
<meta charset="utf-8" />
5
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
<link href="../../css/base.css" rel="stylesheet" type="text/css" />
7
<link href="../../css/login.css" rel="stylesheet" type="text/css" />
8
<title><?php $pagetitle ?></title>
4
<meta charset = "utf-8" />
5
<meta http-equiv = "Content-Type" content = "text/html; charset = utf-8" />
6
<link href = "../../css/base.css" rel = "stylesheet" type = "text/css" />
7
<link href = "../../css/login.css" rel = "stylesheet" type = "text/css" />
11
<form action="." method="post">
12
<h3>Change password</h3>
13
<label for="loginName" >Login:</label>
14
<input type="text" name="loginName" placeholder="Your login" /><br />
15
<label for="password">Password:</label>
16
<input type="password" name="password" placeholder="Your current password"/>
17
<label for="newPassword">New password:</label>
18
<input type="password" name="newPassword" placeholder="Your new password"/>
19
<input type="submit" name="changePasswordSubmit" value="OK" />
15
<form action = "." method = "post">
19
<label for = "loginName" >
22
<input type = "text" name = "loginName" placeholder = "Your login" /><br />
23
<label for = "password">
26
<input type = "password" name = "password" placeholder = "Your current password"/>
27
<label for = "newPassword">
30
<input type = "password" name = "newPassword" placeholder = "Your new password"/>
31
<input type = "submit" name = "changePasswordSubmit" value = "OK"/>
22
if (isset($errorMsg) && $errorMsg!="") {
34
if( isset( $errorMsg ) && $errorMsg!="") {
23
35
echo "<h3>" . $errorMsg . "</h3>";