Moved to PHP folder
122
php/HTML/abc-admin/admin-users.html
Normal file
@ -0,0 +1,122 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<title>ABC-DASHBOARD</title>
|
||||
</head>
|
||||
<body class="pushmenu-push pushmenu-push-toright">
|
||||
<nav class="admin-nav pushmenu pushmenu-left pushmenu-open" id="sidebar">
|
||||
<div class="logo"><img src="https://www.abc.org/Portals/1/abc_logo_svg.svg" alt=""></div>
|
||||
<ul>
|
||||
<li><a href="index.html"><img src="img/dashboard.png" alt=""> Dashboard</a></li>
|
||||
<li><a href="classsetting-names.html"><img src="img/tools.png" alt="">Class Settings</a></li>
|
||||
<li><a href="class-form.html"><img src="img/create.png" alt="">Create Class</a></li>
|
||||
<li class="active"><a href="admin-users.html"><img src="img/ad.png" alt="">Admin Users</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<header>
|
||||
<div class="d-flex admin-header">
|
||||
<div class="toggle d-flex active" id="nav_list"> <img src="img/hamperger.png" alt=""></div>
|
||||
<div class="admin ml-auto d-flex">
|
||||
<span > <img src="img/admin-logo.png"> Admin</span> <span class="logout"> <img src="img/logout.png">Logout</span>
|
||||
<div class="toggle-bar" id="nav-click" onclick="myFunction(this)">
|
||||
<div class="bar1"></div>
|
||||
<div class="bar2"></div>
|
||||
<div class="bar3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="admin-content">
|
||||
<div class="container">
|
||||
<h2>Admin Users</h2>
|
||||
<div class="col-md-12 col-lg-12 admin-setting">
|
||||
<div class="class-content d-flex">
|
||||
<div class="col-md-12 class-name col-lg-6">
|
||||
<div class="d-flex">
|
||||
<span>User Name</span>
|
||||
<input type="text" class="form-control">
|
||||
</div>
|
||||
<div class="d-flex">
|
||||
<span>Password</span>
|
||||
<input type="text" class="form-control">
|
||||
</div>
|
||||
<div class="d-flex justify-content-end">
|
||||
<div class="cancel"><a href="">Cancel</a></div>
|
||||
<div class="leave"><a href="">Add</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<h2>Admin Users</h2>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>User Name</th>
|
||||
<th>Status</th>
|
||||
<th>Edit</th>
|
||||
<th>Delete</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Jhon Smith</td>
|
||||
<td class="text-center"><button class="active-swith"> Active</button></td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jhon Smith</td>
|
||||
<td class="text-center"><button class="active-swith off"> Inactive</button></td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="js/push.js"></script>
|
||||
<!-- <script>
|
||||
function toggleslidebar() {
|
||||
document.getElementById("sidebar").classList.toggle("active");
|
||||
}
|
||||
</script> -->
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#nav_list").click(function(){
|
||||
$(".admin-content").toggleClass("main");
|
||||
$(".admin-header .admin").toggleClass("main");
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
function myFunction(x) {
|
||||
x.classList.toggle("change");
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$("#nav-click").click(function(){
|
||||
$("#sidebar ul").slideToggle();
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
354
php/HTML/abc-admin/class-form.html
Normal file
@ -0,0 +1,354 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<title>ABC-DASHBOARD</title>
|
||||
</head>
|
||||
<body class="pushmenu-push pushmenu-push-toright">
|
||||
<nav class="admin-nav pushmenu pushmenu-left pushmenu-open" id="sidebar">
|
||||
<div class="logo"><img src="https://www.abc.org/Portals/1/abc_logo_svg.svg" alt=""></div>
|
||||
<ul>
|
||||
<li><a href="index.html"><img src="img/dashboard.png" alt=""> Dashboard</a></li>
|
||||
<li><a href="classsetting-names.html"><img src="img/tools.png" alt="">Class Settings</a></li>
|
||||
<li class="active"><a href="class-form.html"><img src="img/create.png" alt="">Create Class</a></li>
|
||||
<li><a href="admin-users.html"><img src="img/ad.png" alt="">Admin Users</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<header>
|
||||
<div class="d-flex admin-header">
|
||||
<div class="toggle active" id="nav_list"> <img src="img/hamperger.png" alt=""></div>
|
||||
<div class="admin ml-auto d-flex">
|
||||
<span > <img src="img/admin-logo.png"> Admin</span> <span class="logout"> <img src="img/logout.png">Logout</span>
|
||||
<div class="toggle-bar" id="nav-click" onclick="myFunction(this)">
|
||||
<div class="bar1"></div>
|
||||
<div class="bar2"></div>
|
||||
<div class="bar3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="admin-content">
|
||||
<div class="container">
|
||||
<h2>New Class Form</h2>
|
||||
<div class="class-form d-flex">
|
||||
<div class="col-lg-7 col-md-12">
|
||||
<h3 class="general-h3">General Information</h3>
|
||||
<div class="general">
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Class Name</label>
|
||||
<select name="" id="target1" style="margin-right: 10px;">
|
||||
<option value="Class1">Select</option>
|
||||
<option value="Class1">Class1</option>
|
||||
<option value="Class1">Class1</option>
|
||||
<option value="Class1">Class1</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad">
|
||||
<label for="">Total Seats</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Instructor:</label>
|
||||
<select name="" id="target2" style="margin-right: 10px;">
|
||||
<option value="Class1">Select</option>
|
||||
<option value="Class1">Class1</option>
|
||||
<option value="Class1">Class1</option>
|
||||
<option value="Class1">Class1</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad">
|
||||
<label for="">Hours:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
</div>
|
||||
</div>
|
||||
<h3 class="general-h3">Eligible Registrants</h3>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad">
|
||||
<span class="chk-abc"> <input type="checkbox" id="start" class="chk-date1"><label for="start"></label>Members / Alumni</span>
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Price:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="date-time" id="expand1">
|
||||
<h3 class="general-h3">Date and Time</h3>
|
||||
<div class="form-group d-flex">
|
||||
<span class="chk-abc"> <input type="checkbox" id="d1" ><label for="d1"></label>Monday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d2" ><label for="d2"></label>Tuesday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d3" ><label for="d3"></label>Wednesday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d4" ><label for="d4"></label>Thursday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d5" ><label for="d5"></label>Friday</span>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Start Date:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">End Date:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Start Time:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">End Time:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad">
|
||||
<span class="chk-abc"> <input type="checkbox" id="start1" class="chk-date2"><label for="start1"></label>Non-Member</span>
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Price:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="date-time" id="expand2">
|
||||
<h3 class="general-h3">Date and Time</h3>
|
||||
<div class="form-group d-flex">
|
||||
<span class="chk-abc"> <input type="checkbox" id="d6" ><label for="d6"></label>Monday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d7" ><label for="d7"></label>Tuesday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d8" ><label for="d8"></label>Wednesday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d9" ><label for="d9"></label>Thursday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d10" ><label for="d10"></label>Friday</span>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Start Date:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">End Date:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Start Time:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">End Time:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad">
|
||||
<span class="chk-abc"> <input type="checkbox" id="start2" class="chk-date3"><label for="start2"></label>SE</span>
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Price:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="date-time" id="expand3">
|
||||
<h3 class="general-h3">Date and Time</h3>
|
||||
<div class="form-group d-flex">
|
||||
<span class="chk-abc"> <input type="checkbox" id="d11" ><label for="d11"></label>Monday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d12" ><label for="d12"></label>Tuesday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d13" ><label for="d13"></label>Wednesday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d14" ><label for="d14"></label>Thursday</span>
|
||||
<span class="chk-abc"> <input type="checkbox" id="d15" ><label for="d15"></label>Friday</span>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Start Date:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">End Date:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Start Time:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">End Time:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h3 class="general-h3">Location</h3>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Location:</label>
|
||||
<select name="" style="margin-right: 10px;" id="target3">
|
||||
<option value="Class1">Select</option>
|
||||
<option value="Class1">Anaheim</option>
|
||||
<option value="Class1">LA / Ventura</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Room:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Physical Address:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">City:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">State:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Zip Code:</label>
|
||||
<input type="text" class="general-input" placeholder="Last name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group d-flex">
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
<label for="">Phone Number:</label>
|
||||
<input type="text" class="general-input m-10" placeholder="Last name">
|
||||
</div>
|
||||
<div class="col-sm-6 d-flex no-pad ">
|
||||
</div>
|
||||
</div>
|
||||
<h3 class="general-h3">Class Description</h3>
|
||||
<textarea class="form-control" rows="5" id="comment"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-5 col-md-12 class-table">
|
||||
<h3 class="general-h3">List of Classes</h3>
|
||||
<select name="" class="duplicate-sl" id="target4">
|
||||
<option value="Class1">select</option>
|
||||
<option value="Class1">Duplicate Record</option>
|
||||
<option value="Class1">Delete Record</option>
|
||||
</select>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><span class="chk-abc"> <input type="checkbox" id="tb7" ><label for="tb7"></label></span></th>
|
||||
<th>Created </th>
|
||||
<th>Class Name</th>
|
||||
<th>Edit</th>
|
||||
<th>Delete</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><span class="chk-abc"> <input type="checkbox" id="tb1" ><label for="tb1"></label></span></td>
|
||||
<td>01/01/2018</td>
|
||||
<td>John Smith</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="chk-abc"> <input type="checkbox" id="tb2" ><label for="tb2"></label></span></td>
|
||||
<td>08/05/2018</td>
|
||||
<td>Edgar Yost</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="chk-abc"> <input type="checkbox" id="tb3" ><label for="tb3"></label></span></td>
|
||||
<td>06/04/2019</td>
|
||||
<td>Michael Lennon</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="chk-abc"> <input type="checkbox" id="tb4" ><label for="tb4"></label></span></td>
|
||||
<td>04/03/2017</td>
|
||||
<td>Brian Jones</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="submit-class d-flex"> <div class="col6"><input type="submit" value="Create" class="submit"></div> <div class="col6"><input type="reset" value="Reset" class="reset"></div></div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="js/push.js"></script>
|
||||
<!-- <script>
|
||||
function toggleslidebar() {
|
||||
document.getElementById("sidebar").classList.toggle("active");
|
||||
}
|
||||
</script> -->
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#nav_list").click(function(){
|
||||
$(".admin-content").toggleClass("main");
|
||||
$(".admin-header .admin").toggleClass("main");
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
function myFunction(x) {
|
||||
x.classList.toggle("change");
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$("#nav-click").click(function(){
|
||||
$("#sidebar ul").slideToggle();
|
||||
});
|
||||
$("#target1").val($("#target1 option:first").val());
|
||||
$("#target2").val($("#target2 option:first").val());
|
||||
$("#target3").val($("#target3 option:first").val());
|
||||
$("#target4").val($("#target4 option:first").val());
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
$(".date-time").hide();
|
||||
$(".chk-date1").click(function() {
|
||||
if($(this).is(":checked")) {
|
||||
$("#expand1").show();
|
||||
} else {
|
||||
$("#expand1").hide();
|
||||
}
|
||||
});
|
||||
|
||||
$(".chk-date2").click(function() {
|
||||
if($(this).is(":checked")) {
|
||||
$("#expand2").show();
|
||||
} else {
|
||||
$("#expand2").hide();
|
||||
}
|
||||
});
|
||||
|
||||
$(".chk-date3").click(function() {
|
||||
if($(this).is(":checked")) {
|
||||
$("#expand3").show();
|
||||
} else {
|
||||
$("#expand3").hide();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
138
php/HTML/abc-admin/classsetting-instructor.html
Normal file
@ -0,0 +1,138 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<title>ABC-DASHBOARD</title>
|
||||
</head>
|
||||
<body class="pushmenu-push pushmenu-push-toright">
|
||||
<nav class="admin-nav pushmenu pushmenu-left pushmenu-open" id="sidebar">
|
||||
<div class="logo"><img src="https://www.abc.org/Portals/1/abc_logo_svg.svg" alt=""></div>
|
||||
<ul>
|
||||
<li><a href="index.html"><img src="img/dashboard.png" alt=""> Dashboard</a></li>
|
||||
<li class="active"><a href="classsetting-names.html"><img src="img/tools.png" alt="">Class Settings</a></li>
|
||||
<li><a href="class-form.html"><img src="img/create.png" alt="">Create Class</a></li>
|
||||
<li><a href="admin-users.html"><img src="img/ad.png" alt="">Admin Users</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<header>
|
||||
<div class="d-flex admin-header">
|
||||
<div class="toggle d-flex active" id="nav_list"> <img src="img/hamperger.png" alt=""></div>
|
||||
<div class="admin ml-auto d-flex">
|
||||
<span > <img src="img/admin-logo.png"> Admin</span> <span class="logout"><img src="img/logout.png"> Logout</span>
|
||||
<div class="toggle-bar" id="nav-click" onclick="myFunction(this)">
|
||||
<div class="bar1"></div>
|
||||
<div class="bar2"></div>
|
||||
<div class="bar3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="admin-content">
|
||||
<div class="container">
|
||||
<h2>Class Settings Page</h2>
|
||||
<div class="setting d-flex">
|
||||
<div class="col-md-12 col-lg-2 no-pad class-left">
|
||||
<ul class="class-nav d-flex">
|
||||
<li><a href="classsetting-names.html">Class Names</a></li>
|
||||
<li><a href="classsetting-location.html">Locations</a></li>
|
||||
<li class="active"><a href="classsetting-instructor.html">Instructors</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-10">
|
||||
<div class="class-content d-flex">
|
||||
<div class="col-md-12 class-name col-lg-6">
|
||||
<div class="d-flex">
|
||||
<span style="font-size: 13px;">Approved Instructor</span>
|
||||
<input type="text" class="form-control">
|
||||
</div>
|
||||
<div class="d-flex justify-content-end">
|
||||
<div class="cancel"><a href="">Cancel</a></div>
|
||||
<div class="leave"><a href="">Add</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<h2> Class Locations</h2>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Created </th>
|
||||
<th>Class Name</th>
|
||||
<th>Edit</th>
|
||||
<th>Delete</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>01/01/2018</td>
|
||||
<td>John Smith</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>08/05/2018</td>
|
||||
<td>Edgar Yost</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>06/04/2019</td>
|
||||
<td>Michael Lennon</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>04/03/2017</td>
|
||||
<td>Brian Jones</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="js/push.js"></script>
|
||||
<!-- <script>
|
||||
function toggleslidebar() {
|
||||
document.getElementById("sidebar").classList.toggle("active");
|
||||
}
|
||||
</script> -->
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#nav_list").click(function(){
|
||||
$(".admin-content").toggleClass("main");
|
||||
$(".admin-header .admin").toggleClass("main");
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
function myFunction(x) {
|
||||
x.classList.toggle("change");
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$("#nav-click").click(function(){
|
||||
$("#sidebar ul").slideToggle();
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
126
php/HTML/abc-admin/classsetting-location.html
Normal file
@ -0,0 +1,126 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<title>ABC-DASHBOARD</title>
|
||||
</head>
|
||||
<body class="pushmenu-push pushmenu-push-toright">
|
||||
<nav class="admin-nav pushmenu pushmenu-left pushmenu-open" id="sidebar">
|
||||
<div class="logo"><img src="https://www.abc.org/Portals/1/abc_logo_svg.svg" alt=""></div>
|
||||
<ul>
|
||||
<li><a href="index.html"><img src="img/dashboard.png" alt=""> Dashboard</a></li>
|
||||
<li class="active"><a href="classsetting-names.html"><img src="img/tools.png" alt="">Class Settings</a></li>
|
||||
<li><a href="class-form.html"><img src="img/create.png" alt="">Create Class</a></li>
|
||||
<li><a href="admin-users.html"><img src="img/ad.png" alt="">Admin Users</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<header>
|
||||
<div class="d-flex admin-header">
|
||||
<div class="toggle d-flex active" id="nav_list"> <img src="img/hamperger.png" alt=""></div>
|
||||
<div class="admin ml-auto d-flex">
|
||||
<span > <img src="img/admin-logo.png"> Admin</span> <span class="logout"> <img src="img/logout.png">Logout</span>
|
||||
<div class="toggle-bar" id="nav-click" onclick="myFunction(this)">
|
||||
<div class="bar1"></div>
|
||||
<div class="bar2"></div>
|
||||
<div class="bar3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="admin-content">
|
||||
<div class="container">
|
||||
<h2>Class Settings Page</h2>
|
||||
<div class="setting d-flex">
|
||||
<div class="col-md-12 col-lg-2 no-pad class-left">
|
||||
<ul class="class-nav d-flex">
|
||||
<li><a href="classsetting-names.html">Class Names</a></li>
|
||||
<li class="active"><a href="classsetting-location.html">Locations</a></li>
|
||||
<li><a href="classsetting-instructor.html">Instructors</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-10">
|
||||
<div class="class-content d-flex">
|
||||
<div class="col-md-12 class-name col-lg-6">
|
||||
<div class="d-flex">
|
||||
<span>Class Locations</span>
|
||||
<input type="text" class="form-control">
|
||||
</div>
|
||||
<div class="d-flex justify-content-end">
|
||||
<div class="cancel"><a href="">Cancel</a></div>
|
||||
<div class="leave"><a href="">Add</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<h2> Class Locations</h2>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Created </th>
|
||||
<th>Class Name</th>
|
||||
<th>Edit</th>
|
||||
<th>Delete</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>01/01/2018</td>
|
||||
<td>Anaheim</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>08/05/2018</td>
|
||||
<td>LA / Ventura</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="js/push.js"></script>
|
||||
<!-- <script>
|
||||
function toggleslidebar() {
|
||||
document.getElementById("sidebar").classList.toggle("active");
|
||||
}
|
||||
</script> -->
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#nav_list").click(function(){
|
||||
$(".admin-content").toggleClass("main");
|
||||
$(".admin-header .admin").toggleClass("main");
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
function myFunction(x) {
|
||||
x.classList.toggle("change");
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$("#nav-click").click(function(){
|
||||
$("#sidebar ul").slideToggle();
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
138
php/HTML/abc-admin/classsetting-names.html
Normal file
@ -0,0 +1,138 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<title>ABC-DASHBOARD</title>
|
||||
</head>
|
||||
<body class="pushmenu-push pushmenu-push-toright">
|
||||
<nav class="admin-nav pushmenu pushmenu-left pushmenu-open" id="sidebar">
|
||||
<div class="logo"><img src="https://www.abc.org/Portals/1/abc_logo_svg.svg" alt=""></div>
|
||||
<ul>
|
||||
<li><a href="index.html"><img src="img/dashboard.png" alt=""> Dashboard</a></li>
|
||||
<li class="active"><a href="classsetting-names.html"><img src="img/tools.png" alt="">Class Settings</a></li>
|
||||
<li><a href="class-form.html"><img src="img/create.png" alt="">Create Class</a></li>
|
||||
<li><a href="admin-users.html"><img src="img/ad.png" alt="">Admin Users</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<header>
|
||||
<div class="d-flex admin-header">
|
||||
<div class="toggle d-flex active" id="nav_list"> <img src="img/hamperger.png" alt=""></div>
|
||||
<div class="admin ml-auto d-flex">
|
||||
<span > <img src="img/admin-logo.png"> Admin</span> <span class="logout"> <img src="img/logout.png">Logout</span>
|
||||
<div class="toggle-bar" id="nav-click" onclick="myFunction(this)">
|
||||
<div class="bar1"></div>
|
||||
<div class="bar2"></div>
|
||||
<div class="bar3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="admin-content">
|
||||
<div class="container">
|
||||
<h2>Class Settings Page</h2>
|
||||
<div class="setting d-flex">
|
||||
<div class="col-md-12 col-lg-2 no-pad class-left">
|
||||
<ul class="class-nav d-flex">
|
||||
<li class="active"><a href="classsetting-names.html">Class Names</a></li>
|
||||
<li ><a href="classsetting-location.html">Locations</a></li>
|
||||
<li><a href="classsetting-instructor.html">Instructors</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-10">
|
||||
<div class="class-content d-flex">
|
||||
<div class="col-md-12 class-name col-lg-6">
|
||||
<div class="d-flex">
|
||||
<span>Class Names</span>
|
||||
<input type="text" class="form-control">
|
||||
</div>
|
||||
<div class="d-flex justify-content-end">
|
||||
<div class="cancel"><a href="">Cancel</a></div>
|
||||
<div class="leave"><a href="">Add</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<h2> Class Locations</h2>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Created </th>
|
||||
<th>Class Name</th>
|
||||
<th>Edit</th>
|
||||
<th>Delete</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>01/01/2018</td>
|
||||
<td>Forklift 101</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>08/05/2018</td>
|
||||
<td>Electrical Blueprint</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>06/04/2019</td>
|
||||
<td>Mechanics Lien</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>04/03/2017</td>
|
||||
<td>Fiber Optics</td>
|
||||
<td><img src="img/edit.png" alt=""></td>
|
||||
<td><img src="img/delete.png" alt=""></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="js/push.js"></script>
|
||||
<!-- <script>
|
||||
function toggleslidebar() {
|
||||
document.getElementById("sidebar").classList.toggle("active");
|
||||
}
|
||||
</script> -->
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#nav_list").click(function(){
|
||||
$(".admin-content").toggleClass("main");
|
||||
$(".admin-header .admin").toggleClass("main");
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
function myFunction(x) {
|
||||
x.classList.toggle("change");
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$("#nav-click").click(function(){
|
||||
$("#sidebar ul").slideToggle();
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
125
php/HTML/abc-admin/css/responsive.css
Normal file
@ -0,0 +1,125 @@
|
||||
@media only screen and (max-width: 1300px){
|
||||
.admin-content .container{
|
||||
max-width: 970px;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 1180px){
|
||||
.admin-content .container{
|
||||
max-width: 810px;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 1024px){
|
||||
.class-table table td{
|
||||
font-size: 11px;
|
||||
}
|
||||
.class-table table th{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.class-content table th{
|
||||
font-size: 14px;
|
||||
}
|
||||
.class-content table td{
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 991px){
|
||||
.admin-content .container{
|
||||
max-width: 720px;
|
||||
}
|
||||
.class-content.d-flex {
|
||||
display: block !important;
|
||||
}
|
||||
.class-form.d-flex{
|
||||
flex: none !important;
|
||||
display: block !important;
|
||||
}
|
||||
.general .form-group.d-flex{
|
||||
flex: none !important;
|
||||
display: block !important;
|
||||
}
|
||||
.general .form-group .col-sm-6.d-flex.no-pad{
|
||||
flex: none !important;
|
||||
display: block !important;
|
||||
max-width: 100%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
span.chk-abc {
|
||||
/* padding: 17px 0; */
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width:900px){
|
||||
span.chk-abc {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.admin-nav ul{
|
||||
display: none;
|
||||
}
|
||||
.logo{
|
||||
display: block;
|
||||
}
|
||||
.logo img{
|
||||
float: left;
|
||||
}
|
||||
.logo:after{
|
||||
content: "";
|
||||
clear: both;
|
||||
display:block;
|
||||
}
|
||||
.admin-content .setting{
|
||||
display: block !important;
|
||||
}
|
||||
.admin-content .container{
|
||||
max-width: 100%;
|
||||
margin: 0 auto;
|
||||
right:0;
|
||||
}
|
||||
div#nav_list{
|
||||
display: none !important;
|
||||
flex: none;
|
||||
}
|
||||
.admin-nav{
|
||||
position: absolute;
|
||||
}
|
||||
.pushmenu-push-toright{
|
||||
left:0;
|
||||
}
|
||||
.admin.ml-auto.d-flex{
|
||||
margin-right:0;
|
||||
z-index: 9999;
|
||||
}
|
||||
.admin-nav{
|
||||
width: 100%;
|
||||
height: auto !important;
|
||||
z-index: 9999;
|
||||
display: block !important;
|
||||
flex: none;
|
||||
}
|
||||
.toggle-bar {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: 15px;
|
||||
right: 11px;
|
||||
}
|
||||
.class-left{
|
||||
border:0 !important;;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width:480px){
|
||||
.class-table table td{
|
||||
font-size: 11px;
|
||||
}
|
||||
.class-table table th{
|
||||
font-size: 14px;
|
||||
}
|
||||
.class-name .d-flex:nth-child(1){
|
||||
display: block !important;
|
||||
}
|
||||
.class-name span{
|
||||
margin-bottom: 15px;
|
||||
display: block;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
643
php/HTML/abc-admin/css/style.css
Normal file
@ -0,0 +1,643 @@
|
||||
|
||||
@font-face {
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
src: url(../fonts/HelveticaNeue-Condensed.otf);
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'HelveticaNeue-Extended';
|
||||
src: url(../fonts/HelveticaNeue-Extended.otf);
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'HelveticaNeue-HeavyCond';
|
||||
src: url(../fonts/HelveticaNeue-HeavyCond.otf);
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Chivo-Regular';
|
||||
src: url(../fonts/HelveticaNeueLight.ttf);
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Chivo-Light';
|
||||
src: url(../fonts/Chivo-Light.ttf);
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Chivo-Regular';
|
||||
src: url(../fonts/Chivo-Regular.otf);
|
||||
}
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
a{
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.pushmenu {
|
||||
background: #444;
|
||||
text-align: center;
|
||||
width: 200px;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.pushmenu-left { left: -200px; }
|
||||
|
||||
.pushmenu-left.pushmenu-open { left: 0; }
|
||||
|
||||
.pushmenu-push {
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.pushmenu-push-toright { left: 200px; }
|
||||
|
||||
/*Transition*/
|
||||
|
||||
.pushmenu, .pushmenu-push {
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
|
||||
*/
|
||||
|
||||
.abc-login{
|
||||
background: #92aec7;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.card-signin {
|
||||
border: 0;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.card-signin .card-title {
|
||||
margin:10px 0;
|
||||
font-weight: 300;
|
||||
font-size:20px;
|
||||
color:#013e7f;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
}
|
||||
|
||||
.card-signin .card-body {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.form-signin {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-signin .btn {
|
||||
font-size:14px;
|
||||
border-radius: 5rem;
|
||||
letter-spacing: .1rem;
|
||||
font-weight: bold;
|
||||
padding: 1rem;
|
||||
transition: all 0.2s;
|
||||
background-color: #ea3f41;
|
||||
border: 0;
|
||||
font-family: 'HelveticaNeue-Extended';
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.abc-login .form-control{
|
||||
border:1px solid #ccc;
|
||||
margin-bottom: 5px;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 13px;
|
||||
height: 35px;
|
||||
}
|
||||
.logo img{
|
||||
max-width: 125px;
|
||||
max-height: 71px;
|
||||
}
|
||||
.abc-login label{
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 15px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.abc-login .remember span{
|
||||
position: relative;
|
||||
top:5px;
|
||||
}
|
||||
.admin-header{
|
||||
background: #92aec7;
|
||||
min-height: 75px;
|
||||
}
|
||||
.admin-header .logo img{
|
||||
max-height: 75px;
|
||||
}
|
||||
.admin-header .admin span{
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 15px;
|
||||
color:#000;
|
||||
margin-right: 25px;
|
||||
align-self: center;
|
||||
}
|
||||
.admin-header .admin span img{
|
||||
max-width: 25px;
|
||||
align-self: center;
|
||||
margin-right: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.admin-header .admin span.logout{
|
||||
position: relative;
|
||||
bottom: 1px;
|
||||
}
|
||||
.admin-header .toggle.active img{
|
||||
max-width: 37px;
|
||||
align-self: center;
|
||||
transform: rotate(180deg);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-moz-transform: rotate(180deg);
|
||||
flex: none !important;
|
||||
height: 30px;
|
||||
margin-top: 0;
|
||||
margin-left: -15px;
|
||||
z-index: 999;
|
||||
position:absolute;
|
||||
}
|
||||
.admin-header .toggle img{
|
||||
transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
-moz-transform: rotate(0deg);
|
||||
height: 30px;
|
||||
position: relative;
|
||||
top:25px;
|
||||
display: inline-block;
|
||||
margin-left:15px;
|
||||
}
|
||||
.logo {
|
||||
border-bottom: 1px dotted #ccc;
|
||||
border-right: 1px dotted#ccc;
|
||||
}
|
||||
.admin-nav{
|
||||
position: fixed;
|
||||
top:0;
|
||||
left:0;
|
||||
background:#8f9eac;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
left:-200px;
|
||||
transition: all 0.5s ease;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.admin-nav.active{
|
||||
left:0px;
|
||||
}
|
||||
.admin-nav li{
|
||||
padding: 13px;
|
||||
text-align: left;
|
||||
}
|
||||
.admin-nav li a{
|
||||
color:#fff;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 17px;
|
||||
text-decoration: none;
|
||||
padding-left: 20px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
.admin-nav li a img {
|
||||
margin-right: 10px;
|
||||
align-self: center;
|
||||
vertical-align: top;
|
||||
}
|
||||
.admin-nav li.active{
|
||||
background: #0070c0;
|
||||
}
|
||||
.admin-content{
|
||||
padding:10px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
.admin-content .setting{
|
||||
background: #f5f7f9;
|
||||
}
|
||||
.admin-content .container{
|
||||
max-width: 1060px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
right: 75px;
|
||||
}
|
||||
.admin-content.main .container{
|
||||
margin: 0 auto !important;
|
||||
right: 0;
|
||||
}
|
||||
.class-nav{
|
||||
flex-direction: column;
|
||||
}
|
||||
.class-left{
|
||||
border-right:1px solid #9f9f9f;
|
||||
}
|
||||
.class-nav li{
|
||||
padding:15px 0;
|
||||
}
|
||||
.class-nav li a{
|
||||
color:#333;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 17px;
|
||||
text-decoration: none;
|
||||
padding-left: 10px;
|
||||
}
|
||||
.class-nav li.active{
|
||||
background: #92aec7;
|
||||
}
|
||||
.class-nav li.active a{
|
||||
color:#fff;
|
||||
}
|
||||
.admin-content h2{
|
||||
font-family: 'HelveticaNeue-HeavyCond';
|
||||
font-size: 30px;
|
||||
color:#003f81;
|
||||
padding:10px 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.no-pad{
|
||||
margin:0;
|
||||
padding: 0;
|
||||
}
|
||||
.class-name{
|
||||
padding:25px 0;
|
||||
}
|
||||
.class-name span{
|
||||
color: #333;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 15px;
|
||||
margin-right: 10px;
|
||||
align-self: center;
|
||||
min-width: 130px;
|
||||
text-align: right;
|
||||
}
|
||||
.class-name input{
|
||||
width: 100%;
|
||||
}
|
||||
.class-content .cancel{
|
||||
background: #d9d9d9;
|
||||
margin-right: 5px;
|
||||
padding: 10px 25px;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 17px;
|
||||
margin-top:10px;
|
||||
}
|
||||
.class-content .cancel a{
|
||||
color:#000;
|
||||
}
|
||||
.class-content .leave{
|
||||
background: #0070c0;
|
||||
padding: 10px 25px;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 17px;
|
||||
margin-top:10px;
|
||||
}
|
||||
.class-content .leave a{
|
||||
color: #fff;
|
||||
}
|
||||
.class-content table th{
|
||||
padding:0;
|
||||
color:#333;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 17px;
|
||||
text-align: center;
|
||||
border-bottom:0;
|
||||
border: 1px solid #a2c6e0;
|
||||
padding: 10px;
|
||||
}
|
||||
.class-content table td{
|
||||
text-align: center;
|
||||
padding: 8px 0;
|
||||
border: 1px solid #a2c6e0;
|
||||
color:#333;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 13px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.class-content h2{
|
||||
color:#333;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 21px;
|
||||
padding: 20px 0 0 0;
|
||||
}
|
||||
.admin.ml-auto.d-flex.main{
|
||||
margin-right: 0;
|
||||
}
|
||||
.admin.ml-auto.d-flex {
|
||||
margin-right: 200px;
|
||||
}
|
||||
|
||||
|
||||
/*toggle css*/
|
||||
.toggle-bar {
|
||||
display:none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.bar1, .bar2, .bar3 {
|
||||
width: 35px;
|
||||
height: 5px;
|
||||
background-color: #333;
|
||||
margin: 6px 0;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.change .bar1 {
|
||||
-webkit-transform: rotate(-45deg) translate(-9px, 6px);
|
||||
transform: rotate(-45deg) translate(-9px, 6px);
|
||||
}
|
||||
|
||||
.change .bar2 {opacity: 0;}
|
||||
|
||||
.change .bar3 {
|
||||
-webkit-transform: rotate(45deg) translate(-8px, -8px);
|
||||
transform: rotate(45deg) translate(-8px, -8px);
|
||||
}
|
||||
/*toggleclass end*/
|
||||
.admin-content h3{
|
||||
font-family: 'HelveticaNeue-HeavyCond';
|
||||
font-size: 17px;
|
||||
color: #333;
|
||||
padding:10px 0;
|
||||
margin-bottom: 15px;
|
||||
position: relative;
|
||||
}
|
||||
.admin-content .general select{
|
||||
width: 100%;
|
||||
height: 35px;
|
||||
border:1px solid #ccc;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 13px;
|
||||
-webkit-text-fill-color:#ccc;
|
||||
background-color: transparent;
|
||||
}
|
||||
.admin-content .general select option{
|
||||
-webkit-text-fill-color:#000;
|
||||
}
|
||||
.admin-content .general label{
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 14px;
|
||||
margin-right: 10px;
|
||||
align-self: center;
|
||||
/* min-width: 100px;*/
|
||||
text-align: right;
|
||||
font-weight: 500;
|
||||
}
|
||||
.admin-content .general-input{
|
||||
width: 100%;
|
||||
height: 35px;
|
||||
border:1px solid #ccc;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 12px;
|
||||
-webkit-text-fill-color:#ccc;
|
||||
}
|
||||
.general-input{
|
||||
padding: 0 0 0 10px;
|
||||
}
|
||||
|
||||
.m-10{
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.chk-abc input[type="checkbox"]{
|
||||
display: none;
|
||||
}
|
||||
.chk-abc input[type="checkbox"] + label{
|
||||
border:1px solid #000;
|
||||
width:15px;
|
||||
height:15px;
|
||||
margin-right: 7px;
|
||||
vertical-align: bottom;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
font-size: 30px;
|
||||
min-width: 15px !important;
|
||||
}
|
||||
.chk-abc input[type="checkbox"] + label:after{
|
||||
content: '✔';
|
||||
color: #0000ff;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
left: 3px;
|
||||
top: 3px;
|
||||
transform: translate(-50%, -50%);
|
||||
right: 0;
|
||||
|
||||
}
|
||||
|
||||
.chk-abc input[type="checkbox"]:checked + label:after{
|
||||
opacity: 1;
|
||||
}
|
||||
.chk-abc{
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 14px;
|
||||
align-self: center;
|
||||
color: #000;
|
||||
}
|
||||
.date-time span{
|
||||
flex: 1;
|
||||
display: flex;
|
||||
margin-right: 17px
|
||||
}
|
||||
|
||||
.class-table table th{
|
||||
padding:0;
|
||||
color:#333;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 17px;
|
||||
text-align: center;
|
||||
border-bottom:0;
|
||||
border: 1px solid #dcdcdc;
|
||||
padding: 10px;
|
||||
}
|
||||
.class-table table td{
|
||||
text-align: center;
|
||||
padding: 8px 0;
|
||||
border: 1px solid #dcdcdc;
|
||||
color:#333;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 13px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.class-table table td .chk-abc{
|
||||
margin-left: 12px;
|
||||
}
|
||||
.submit-class input{
|
||||
min-width: 100px;
|
||||
height: 35px;
|
||||
text-align: center;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 17px;
|
||||
margin-left:18px;
|
||||
margin-top: 25px;
|
||||
border:0;
|
||||
}
|
||||
.submit-class .submit{
|
||||
background: #0070c0;
|
||||
color: #fff;
|
||||
}
|
||||
.submit-class .reset{
|
||||
background: #e6e4e4;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.class-table table th span {
|
||||
margin-left: 11px;
|
||||
}
|
||||
.dashboard .setting{
|
||||
background:#d0deec;
|
||||
width: 50%;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
.dashboard .create{
|
||||
background:#eaeaea;
|
||||
width:50%;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
margin-left: 20px;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
.dashboard h3{
|
||||
font-size: 70px;
|
||||
font-family: 'HelveticaNeue-Extended';
|
||||
color: #ef3e42;
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.dashboard h2{
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 25px;
|
||||
color: #333;
|
||||
margin:0;
|
||||
}
|
||||
.dashboard .create a, .dashboard .setting a{
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 15px;
|
||||
color: #fff;
|
||||
background: #185987;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
min-height: 40px;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.duplicate-sl {
|
||||
width: 100%;
|
||||
height: 35px;
|
||||
border: 1px solid #ccc;
|
||||
font-family: 'Chivo-Regular';
|
||||
font-size: 13px;
|
||||
max-width: 250px;
|
||||
margin-bottom: 15px;
|
||||
-webkit-text-fill-color:#ccc;
|
||||
padding-left:10px;
|
||||
}
|
||||
.date-time {
|
||||
border: 1px solid #ccc;
|
||||
box-sizing: border-box;
|
||||
padding: 10px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.admin-h2{
|
||||
color: #333;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 21px;
|
||||
padding: 10px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.class-table table td img{
|
||||
max-width: 40px;
|
||||
vertical-align: middle;
|
||||
margin-right: 15px;
|
||||
}
|
||||
button.ad-btn {
|
||||
background: #0070c0;
|
||||
padding: 10px 35px;
|
||||
border: 0;
|
||||
color: #fff;
|
||||
margin-top: 15px;
|
||||
font-family: 'HelveticaNeue-Condensed';
|
||||
font-size: 15px;
|
||||
}
|
||||
.admin-setting{
|
||||
padding:25px 0;
|
||||
margin:0;
|
||||
}
|
||||
.table{
|
||||
margin:0;
|
||||
}
|
||||
.class-content.d-flex {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.active-swith{
|
||||
min-width: 96px;
|
||||
padding: 6px 0;
|
||||
border-radius: 5px;
|
||||
background: #29c35b;
|
||||
display: inline-block;
|
||||
border: 0;
|
||||
color: #fff;
|
||||
}
|
||||
.active-swith.off{
|
||||
background: #f2553b;
|
||||
}
|
||||
.col-md-12.col-lg-12.admin-setting {
|
||||
background:#f5f7f9;
|
||||
}
|
||||
.admin-setting .class-name input{
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.create.admin {
|
||||
background: #e2ebf5;
|
||||
}
|
BIN
php/HTML/abc-admin/fonts/Chivo-Light.ttf
Normal file
BIN
php/HTML/abc-admin/fonts/Chivo-Regular.otf
Normal file
BIN
php/HTML/abc-admin/fonts/HelveticaNeue-Condensed.otf
Normal file
BIN
php/HTML/abc-admin/fonts/HelveticaNeue-Extended.otf
Normal file
BIN
php/HTML/abc-admin/fonts/HelveticaNeue-HeavyCond.otf
Normal file
BIN
php/HTML/abc-admin/fonts/HelveticaNeueLight.ttf
Normal file
BIN
php/HTML/abc-admin/img/abc-logo-color.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
php/HTML/abc-admin/img/ad.png
Normal file
After Width: | Height: | Size: 756 B |
BIN
php/HTML/abc-admin/img/admin-logo.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
php/HTML/abc-admin/img/create.png
Normal file
After Width: | Height: | Size: 643 B |
BIN
php/HTML/abc-admin/img/dashboard.png
Normal file
After Width: | Height: | Size: 679 B |
BIN
php/HTML/abc-admin/img/delete.png
Normal file
After Width: | Height: | Size: 532 B |
BIN
php/HTML/abc-admin/img/edit.png
Normal file
After Width: | Height: | Size: 557 B |
BIN
php/HTML/abc-admin/img/hamperger.png
Normal file
After Width: | Height: | Size: 733 B |
BIN
php/HTML/abc-admin/img/logo.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
php/HTML/abc-admin/img/logo.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
php/HTML/abc-admin/img/logout.png
Normal file
After Width: | Height: | Size: 907 B |
BIN
php/HTML/abc-admin/img/tools.png
Normal file
After Width: | Height: | Size: 635 B |
118
php/HTML/abc-admin/index.html
Normal file
@ -0,0 +1,118 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<title>ABC-DASHBOARD</title>
|
||||
</head>
|
||||
<body class="pushmenu-push pushmenu-push-toright">
|
||||
<nav class="admin-nav pushmenu pushmenu-left pushmenu-open" id="sidebar">
|
||||
<div class="logo"><img src="https://www.abc.org/Portals/1/abc_logo_svg.svg" alt=""></div>
|
||||
<ul>
|
||||
<li class="active"><a href="index.html"><img src="img/dashboard.png" alt=""> Dashboard</a></li>
|
||||
<li><a href="classsetting-names.html"><img src="img/tools.png" alt="">Class Settings</a></li>
|
||||
<li><a href="class-form.html"><img src="img/create.png" alt="">Create Class</a></li>
|
||||
<li><a href="admin-users.html"><img src="img/ad.png" alt="">Admin Users</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<header>
|
||||
<div class="d-flex admin-header">
|
||||
<div class="toggle active" id="nav_list"> <img src="img/hamperger.png" alt=""></div>
|
||||
<div class="admin ml-auto d-flex">
|
||||
<span > <img src="img/admin-logo.png"> Admin</span> <span class="logout"> <img src="img/logout.png">Logout</span>
|
||||
<div class="toggle-bar" id="nav-click" onclick="myFunction(this)">
|
||||
<div class="bar1"></div>
|
||||
<div class="bar2"></div>
|
||||
<div class="bar3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="admin-content">
|
||||
<div class="container">
|
||||
<h2>Dashboard</h2>
|
||||
<div class="dashboard d-flex">
|
||||
<div class="col-sm-10 d-flex no-pad">
|
||||
<div class="setting">
|
||||
<h3>150</h3>
|
||||
<h2>Class Settings</h2>
|
||||
<a href="classsetting-names.html">View</a>
|
||||
|
||||
</div>
|
||||
<div class="create">
|
||||
<h3>150</h3>
|
||||
<h2>Create Class</h2>
|
||||
<a href="class-form.html">View</a></div>
|
||||
<div class="create admin">
|
||||
<h3>150</h3>
|
||||
<h2>Admin users</h2>
|
||||
<a href="admin-users.html">View</a></div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="js/push.js"></script>
|
||||
<!-- <script>
|
||||
function toggleslidebar() {
|
||||
document.getElementById("sidebar").classList.toggle("active");
|
||||
}
|
||||
</script> -->
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#nav_list").click(function(){
|
||||
$(".admin-content").toggleClass("main");
|
||||
$(".admin-header .admin").toggleClass("main");
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
function myFunction(x) {
|
||||
x.classList.toggle("change");
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$("#nav-click").click(function(){
|
||||
$("#sidebar ul").slideToggle();
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
$(".date-time").hide();
|
||||
$(".chk-date1").click(function() {
|
||||
if($(this).is(":checked")) {
|
||||
$("#expand1").show();
|
||||
} else {
|
||||
$("#expand1").hide();
|
||||
}
|
||||
});
|
||||
|
||||
$(".chk-date2").click(function() {
|
||||
if($(this).is(":checked")) {
|
||||
$("#expand2").show();
|
||||
} else {
|
||||
$("#expand2").hide();
|
||||
}
|
||||
});
|
||||
|
||||
$(".chk-date3").click(function() {
|
||||
if($(this).is(":checked")) {
|
||||
$("#expand3").show();
|
||||
} else {
|
||||
$("#expand3").hide();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
10
php/HTML/abc-admin/js/push.js
Normal file
@ -0,0 +1,10 @@
|
||||
$(document).ready(function() {
|
||||
$menuLeft = $('.pushmenu-left');
|
||||
$nav_list = $('#nav_list');
|
||||
|
||||
$nav_list.click(function() {
|
||||
$(this).toggleClass('active');
|
||||
$('.pushmenu-push').toggleClass('pushmenu-push-toright');
|
||||
$menuLeft.toggleClass('pushmenu-open');
|
||||
});
|
||||
});
|
57
php/HTML/abc-admin/login.html
Normal file
@ -0,0 +1,57 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
<title>Abc _Admin</title>
|
||||
</head>
|
||||
<body>
|
||||
<section class="abc-login">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-9 col-md-7 col-lg-5 mx-auto">
|
||||
<div class="card card-signin my-5">
|
||||
<div class="card-body">
|
||||
<div class="logo d-flex justify-content-center align-content-center"> <img src="img/logo.jpg" alt=""></div>
|
||||
<h5 class="card-title text-center">Please enter your login details. </h5>
|
||||
<form class="form-signin">
|
||||
<div class="form-label-group">
|
||||
<label for="inputEmail">Email address</label>
|
||||
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-label-group">
|
||||
<label for="inputPassword">Password</label>
|
||||
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="custom-control custom-checkbox mb-3">
|
||||
<input type="checkbox" class="custom-control-input" id="customCheck1">
|
||||
<label class="custom-control-label remember" for="customCheck1"><span>Remember password</span></label>
|
||||
</div>
|
||||
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Sign in</button>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|