test2
[smail.git/.git] / send_m.php
1 <?php
2 include 'api/functions.php';
3 session_issruning();
4 if (isloged()==0){
5     header('Location: login.php');
6 }
7
8 ?>
9 <?php include 'i18n.class.php'; $i18n = new i18n(); $i18n->init();?>
10 <html>
11     <head>
12         <link type='text/css' rel='stylesheet' href='css/all.css'/>
13         <link type='text/css' rel='stylesheet' href='css/send.css'/>
14         <style type='text/css'>
15         input{
16             display: block;
17         }
18         </style>
19     </head>
20     <body>
21         <form action='mailbox/send.php' method='POST'>
22             <input type="text" name="mail_r" placeholder="SMail">
23             <textarea type="text" name="content" placeholder=<?php echo L::send_content;?>></textarea>
24             <input class='submit' type="submit" value=<?php echo L::send_send;?>>
25         </form>
26     </body>
27 </html>