Bugfixes and others
[smail.git/.git] / ch_p.php
1 <?php
2 include 'api/functions.php';
3 session_issruning();
4 if (isLoged()==0){
5     header('Location: login.html');
6 }
7 ?><html>
8     <head>
9         <title>Login Smail</title>
10         <link type='text/css' rel='stylesheet' href='css/all.css'/>
11         <style type='text/css'>
12         input{
13             display: block;
14         }
15         </style>
16     </head>
17     <body>
18         <form action='mailbox/change_p.php' method='POST'>
19             <input type="text" name="old" id="old" placeholder="Old">
20             <input type="text" name="new" id="new" placeholder="New">
21             <input type="submit" value="Change">
22         </form>
23     </body>
24 </html>