-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheaderchngpass.php
46 lines (39 loc) · 1.02 KB
/
headerchngpass.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
<?php
session_start();
if($_SESSION["me"]==""){
?>
<script>
window.location="login.php";
</script>
<?php
}
?>
<html lang="en">
<head>
<meta charset="UTF-8">
<script type="text/javascript">
function showHint(str){
if(str.length==0){
document.getElementById("texhint").innerHTML="";
}
else{
var xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if(this.readyState == 4 && this.status == 200){
document.getElementById("texhint").innerHTML=this.responseText;
}
};
xmlhttp.open("GET","texthint.php?q=" + str,true);
xmlhttp.send();
}
}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chitchat</title>
<link rel="icon" type="img/png" href="css/messages.png" sizes="96x96"></link>
<link rel="stylesheet" href="css1/chngpass.css"></link>
</head>
<body class="background-image" style="margin: 0px;padding: 0px">
<header>
<span style="padding-left: 35em;"><img src="css/messages.png" alt="chitchat" style="width: 80px; height: 80px;" align="middle">ChitChat</span>
</header>