-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
67 lines (61 loc) · 2.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
include_once "url.php";
?>
<!DOCTYPE html>
<html lang="en">
<?php include_once "view/template_layout/head.php" ?>
<body class="fix-header fix-sidebar">
<!-- Preloader - style you can find in spinners.css -->
<div class="preloader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" /> </svg>
</div>
<!-- Main wrapper -->
<div id="main-wrapper">
<div class="unix-login">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-lg-4">
<div class="login-content card">
<div class="login-form">
<h4>Login</h4>
<form action="Controller/loginCtrl.php" method="post">
<div class="form-group">
<label>Select Your Role</label>
<select class="form-control" name="role">
<option value="">Please select One</option>
<option value="Student">Student</option>
<option value="Teacher">Teacher</option>
<option value="Dpt_Head">Head Of The Department</option>
<option value="Admin">Admin</option>
</select>
</div>
<div class="form-group">
<label>Email address</label>
<input type="email" name="email" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="pass" class="form-control" placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Remember Me
</label>
<label class="pull-right">
<a href="forgotpass.php">Forgotten Password?</a>
</label>
</div>
<button type="submit" class="btn btn-primary btn-flat m-b-30 m-t-30">Sign in</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Wrapper -->
<?php include_once'view/head_of_the_dpt/template_lay/script.php' ?>
</body>
</html>