-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
57 lines (46 loc) · 1.74 KB
/
login.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
//Allow the config
define('__CONFIG__', true);
//Require the config
require_once "incl/config.php";
Page::forceDashboard();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="robots" content="follow">
<title>Login into your account</title>
<!-- UIKit css -->
<link rel="stylesheet" href="assets/css/uikit.min.css">
</head>
<body>
<div class="uk-section uk-container">
<div class="uk-grid uk-child-width-1-3@s uk-child-width-1-1" uk-grid="">
<form class="uk-form-stacked js-login">
<h2>Login</h2>
<div class="uk-margin">
<label class="uk-form-label" for="form-stacked-text2">Email</label>
<div class="uk-form-controls">
<input class="uk-input" id="form-stacked-text2" type="email" required="required" placeholder="Enter your email address">
</div>
</div>
<div class="uk-margin">
<label class="uk-form-label" for="form-stacked-text">Password</label>
<div class="uk-form-controls">
<input class="uk-input" id="form-stacked-text"
type="password" required="required" placeholder="Enter your Password">
</div>
</div>
<div class="uk-margin uk-alert uk-alert-danger js-error" style="display:none"></div>
<div class="uk-margin">
<button class="uk-button uk-button-default" type="submit">LOGIN</button>
</div>
</form>
</div>
</div>
<?php require_once "incl/footer.php" ?>
</body>
</html>