OpenSencillo  2016.106
Long live the simplicity of PHP
 All Data Structures Namespaces Files Functions Pages
login.default.screen.php
1 <?$t=$translate;?>
2 <body>
3 <!--------------------------------------------------------------------------.
4 | Software: Sencillo Default Theme |
5 | Version: 2015.105 |
6 | Contact: ph@mastery.sk |
7 | ------------------------------------------------------------------------- |
8 | Author: Bc. Peter Horváth (original founder) |
9 | Copyright (c) 2014-<?=date('Y');?>, Bc. Peter Horváth. All Rights Reserved. |
10 | ------------------------------------------------------------------------- |
11 | License: Distributed under the General Public License (GPL) |
12 | http://www.gnu.org/licenses/gpl-3.0.html |
13 | This program is distributed in the hope that it will be useful - WITHOUT |
14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
15 | FITNESS FOR A PARTICULAR PURPOSE. |
16 '--------------------------------------------------------------------------->
17  <div id="login" class="container">
18  <div class="row">
19  <div class="col-sm-4"></div>
20  <div class="col-sm-4">
21  <h1><?=$t->translate('Login')?></h1>
22  <form action="<?=LOGIN_ACTION;?>" method="POST">
23  <fieldset class="clearfix">
24  <div class="row">
25  <p><input type="text" name="email" placeholder="<?=$t->translate('User');?>" required></p>
26  </div>
27  <div class="row">
28  <p><input type="password" name="pass" placeholder="<?=$t->translate('Password');?>" required></p>
29  </div>
30  <div class="row">
31  <p><input type="submit" value="<?=$t->translate('Login');?>"></p>
32  </div>
33  </fieldset>
34  </form>
35  <p><a href="<?='http://'.$_SERVER['SERVER_NAME'].'/registration';?>"><?=$t->translate('Registration');?></a></p>
36  <p><?=LOGIN_ERRMSG;?></p>
37  </div>
38  <div class="col-sm-4"></div>
39  </div>
40  </div>
41 </body>
42 </html>