0.3 First Public Versiob
[smail.git/.git] / login.php
1 <?php include 'i18n.class.php'; $i18n = new i18n(); $i18n->init();?>
2 <html>
3     <head>
4         <title>Login Smail</title>
5         <link type='text/css' rel='stylesheet' href='css/send.css?v=1'/>
6         <link type='text/css' rel='stylesheet' href='css/all.css?v=2'/>
7         <style type='text/css'>
8         input{
9             display: block;
10         }
11         </style>
12     </head>
13     <body>
14         <?php
15             if (isset($_GET['info'])){
16                 echo str_replace('_',' ',$_GET['info']);
17             }
18         ?>
19         <form action='api/login.php' method='POST'>
20             <input type="text" name="mail" id="mail" placeholder="Mail">
21             <input type="password" name="password" class='center' id="" placeholder="Password">
22             <input type="submit" value=<?php echo L::login_postlogin_submit;?> class='submit'>
23         </form>
24     </body>
25 </html>