Login page done
This commit is contained in:
parent
d6dd5f022c
commit
b687a54fb0
37
htdocs/css/login.css
Normal file
37
htdocs/css/login.css
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
body {
|
||||||
|
padding-top: 40px;
|
||||||
|
background-color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-signin {
|
||||||
|
max-width: 330px;
|
||||||
|
padding: 15px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.form-signin .form-signin-heading,
|
||||||
|
|
||||||
|
.form-signin .checkbox {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
.form-signin .form-control {
|
||||||
|
position: relative;
|
||||||
|
font-size: 16px;
|
||||||
|
height: auto;
|
||||||
|
padding: 10px;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.form-signin .form-control:focus {
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
.form-signin input[type="text"] {
|
||||||
|
margin-bottom: -1px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
}
|
||||||
|
.form-signin input[type="password"] {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
}
|
@ -119,7 +119,7 @@ if (empty($page)) // Public pages
|
|||||||
{
|
{
|
||||||
case "":
|
case "":
|
||||||
$_GET["p"] = "";
|
$_GET["p"] = "";
|
||||||
case "login":
|
case "home":
|
||||||
include("public/home.php");
|
include("public/home.php");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -127,6 +127,10 @@ if (empty($page)) // Public pages
|
|||||||
include("public/login.php");
|
include("public/login.php");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case "score":
|
||||||
|
include("public/score.php");
|
||||||
|
break;
|
||||||
|
|
||||||
case "forgotpasswd":
|
case "forgotpasswd":
|
||||||
include("public/forgotpasswd.php");
|
include("public/forgotpasswd.php");
|
||||||
break;
|
break;
|
||||||
|
34
onyx/include/public/login.php
Normal file
34
onyx/include/public/login.php
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
if (!defined('ONYX')) exit;
|
||||||
|
|
||||||
|
if ($SESS->level < 1)
|
||||||
|
{
|
||||||
|
if (isset($_POST['username']) && isset($_POST['password']))
|
||||||
|
{
|
||||||
|
$username = $_POST['username'];
|
||||||
|
$password = $_POST['password'];
|
||||||
|
|
||||||
|
$bdd = new BDD();
|
||||||
|
|
||||||
|
// TODO: use function
|
||||||
|
$hash = mdp($bdd->escape($username), $bdd->escape($password));
|
||||||
|
$result = $bdd->unique_query("SELECT username, auth_level FROM users
|
||||||
|
WHERE username='$username'
|
||||||
|
AND password=unhex('$hash')");
|
||||||
|
|
||||||
|
if (!empty($result) && $result['auth_level'] != 0)
|
||||||
|
{
|
||||||
|
$SESS->level = $result['auth_level'];
|
||||||
|
$SESS->values = $result;
|
||||||
|
$SESS->put($username);
|
||||||
|
header("Location: /home");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$page = "public/login";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Show some page ?
|
||||||
|
header("Location: /home");
|
||||||
|
}
|
6
onyx/lang/fr/login.json
Normal file
6
onyx/lang/fr/login.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"title":"Veuillez vous connecter",
|
||||||
|
"login":"Login",
|
||||||
|
"password":"Mot de passe",
|
||||||
|
"connect":"Se connecter"
|
||||||
|
}
|
18
onyx/tpl/bootstrap/public/login.tpl
Normal file
18
onyx/tpl/bootstrap/public/login.tpl
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{extends file="layout-nav.tpl"}
|
||||||
|
|
||||||
|
{block name=head}
|
||||||
|
<link href="css/login.css" rel="stylesheet">
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name=content}
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<form class="form-signin" method="post" action="login">
|
||||||
|
<h3 class="form-signin-heading">{text file="login" path=title}</h3>
|
||||||
|
<input name="username" type="text" class="form-control" placeholder="{text file="login" path=login}" autofocus>
|
||||||
|
<input name="password" type="password" class="form-control" placeholder="{text file="login" path=password}">
|
||||||
|
<button class="btn btn-lg btn-primary btn-block" type="submit">{text file="login" path=connect}</button>
|
||||||
|
</form>
|
||||||
|
</div> <!-- /container -->
|
||||||
|
|
||||||
|
{/block}
|
11
onyx/tpl/bootstrap/users/home.tpl
Normal file
11
onyx/tpl/bootstrap/users/home.tpl
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{extends file="layout-nav.tpl"}
|
||||||
|
|
||||||
|
{block name=head}
|
||||||
|
<link href="css/home.css" rel="stylesheet">
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name=content}
|
||||||
|
<h1>
|
||||||
|
YOUPIII !!!
|
||||||
|
</h1>
|
||||||
|
{/block}
|
Loading…
Reference in New Issue
Block a user