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