-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalumni_password.php
77 lines (52 loc) · 1.98 KB
/
alumni_password.php
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
<? session_start();
if(!session_is_registered('login')){
header("location:alumni_login.php");
} else {
include 'alumni/password.php';
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<script src="js/header.js" type="text/javascript"></script>
<body>
<div class="container" style="height:550px;">
<div class="myheader">
</div>
<script src="js/menu.js" type="text/javascript"></script>
<div class="mainarea">
<div class="maintext" style="width:510px;"><br />
<div class="textpadder" style="width:500px;">
<span class="titletext">Change your password</span>
<?
include 'alumni/menu.php';
?>
<?
include 'alumni/error_check.php';
?>
<form method="post">
<p>
<span class="label">Old password: </span>
<input type="password" class="alumni" name="password_old"></input>
</p>
<br />
<p>
<span class="label">New Password: </span>
<input type="password" class="alumni" name="password"></input>
</p>
<br />
<p>
<span class="label">New Password (again): </span>
<input type="password" class="alumni" name="password_confirm"></input>
</p>
<br />
<br />
<input type="submit" name="action" value="Save" />
</form>
</div>
</div><!--/textpadder--><!--/maintext-->
<br style="clear:both;" />
</div><!--/mainarea-->
<script src="js/footer.js" type="text/javascript"></script>
</div><!--/Container-->
</body>
</html>