Faster Update, fixing bugs
[smail.git/.git] / login.php
1 <?php
2 ini_set('display_errors',1);
3 ini_set('display_initial_errors',1);
4 error_reporting(E_ALL);?>
5 <?php include 'i18n.class.php'; $i18n = new i18n(); $i18n->init();?>
6 <html>
7     <head>
8         <title>Login Smail</title>
9         <!-----Alls------>
10         <link type='text/css' rel='stylesheet' href='css/all.css?v=4'/>
11         <!--Sends Pages-->
12         <link type='text/css' rel='stylesheet' href='css/send.css?v=2'/>
13         <style type='text/css'>
14         input{
15             display: block;
16         }
17         </style>
18     </head>
19     <body>
20         <?php
21             if (isset($_GET['info'])){
22                 echo str_replace('_',' ',$_GET['info']);
23             }
24         ?>
25         <form action='api/login.php' method='POST'>
26             <input type="text" name="mail" id="mail" placeholder="Mail">
27             <input type="password" name="password" class='center' id="" placeholder="Password">
28             <input type="submit" value=<?php echo L::login_submit;?> class='submit'>
29         </form>
30     </body>
31 </html>