-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (42 loc) · 1.81 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
39
40
41
42
43
44
45
46
47
48
<?php
include_once('header.php');
?>
<div class="form">
<ul class="tab-group">
<li class="tab active"><a href="#admin">Admin</a></li>
<li class="tab"><a href="#visitor">Employee</a></li>
</ul>
<div class="tab-content">
<div id="admin">
<h1>Welcome Back!</h1>
<form action="Views/Login/Admin/login.php" method="post">
<div class="field-wrap">
<label>User Name<span class="req">*</span></label>
<input name="user" type="text" required="required"/>
</div>
<div class="field-wrap">
<label>Password<span class="req">*</span></label>
<input name="pass" type="password" required="required"/>
</div>
<button type="submit" class="btn btn-primary btn-block btn-large">Let Me IN....</button>
</form>
</div>
<div id="visitor">
<h1>Welcome Back !!!</h1>
<form action="Views/Login/Employee/login.php" method="post">
<div class="field-wrap">
<label>User Name<span class="req">*</span></label>
<input name="user" type="text" required autocomplete="off"/>
</div>
<div class="field-wrap">
<label>ID Number<span class="req">*</span></label>
<input name="pass" type="password" required autocomplete="off"/>
</div>
<button class="btn btn-primary btn-block btn-large">Let Me IN....</button>
</form>
</div>
</div>
</div> <!-- /form -->
<?php
include_once('footer.php');
?>