-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
38 lines (34 loc) · 1.21 KB
/
index.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
<?php
include 'resources/partials/header.php';
?>
<div>
<form id="login_form" class="form_login" method="POST" action="includes/login.inc.php"
onsubmit="return validateLogin()">
<h2>LOGIN</h2>
<div class="error" id="error"><?php include 'resources/partials/login.validate.php' ?></div>
<div>
<label for="email">Email</label>
<input type="email" id="login_email" name="email" placeholder="Email">
</div>
<br/>
<div>
<label for="password">Password</label>
<input type="password" id="login_password" name="password" placeholder="Password">
<br/>
</div>
<div>
<button type="submit" name="submit">Login</button>
</div>
<br/>
<div>
<p>Don't have an account ? <a href="register.php">REGISTER</a></p>
</div>
<div>
<input type="checkbox" id="is_admin" name="is_admin" value=1>
<label for="is_admin"> I am an Admin</label>
</div>
</form>
</div>
<?php
include 'resources/partials/footer.php';
?>