/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
1
<!DOCTYPE html>
2
<html>
4.10.2 by Daniel Johansson
Code updated partly, File to remember map "duggor" has not been checked.
3
	<head>
11.2.1 by mattman-03
cleaning
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>
9
			<?php 
10
				$pagetitle 
11
			?>
12
		</title>
4.10.2 by Daniel Johansson
Code updated partly, File to remember map "duggor" has not been checked.
13
	</head>
14
	<body>
11.2.1 by mattman-03
cleaning
15
		<form action = "." method = "post">
16
			<h3> 
17
				Change password 
18
			</h3>
19
			<label for = "loginName" >
20
				Login:
21
			</label>
22
			<input type = "text" name = "loginName" placeholder = "Your login" /><br />
23
			<label for = "password">
24
				Password:
25
			</label>
26
			<input type = "password" name = "password" placeholder = "Your current password"/>
27
			<label for = "newPassword">
28
				New password:
29
			</label>
30
			<input type = "password" name = "newPassword" placeholder = "Your new password"/>
31
			<input type = "submit" name = "changePasswordSubmit" value = "OK"/>
4.10.2 by Daniel Johansson
Code updated partly, File to remember map "duggor" has not been checked.
32
		</form>
33
		<?php
11.2.1 by mattman-03
cleaning
34
			if( isset( $errorMsg ) && $errorMsg!="") {
4.10.2 by Daniel Johansson
Code updated partly, File to remember map "duggor" has not been checked.
35
				echo "<h3>" . $errorMsg . "</h3>";
36
			}
37
		?>
38
	</body>
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
39
</html>