Skip to content

Commit

Permalink
sitemap & calendar pages html
Browse files Browse the repository at this point in the history
  • Loading branch information
DESKTOP-RUDG6I0\ANKIT committed Apr 4, 2018
1 parent c0318c2 commit a356f31
Show file tree
Hide file tree
Showing 97 changed files with 22,169 additions and 200 deletions.
145 changes: 145 additions & 0 deletions calendar.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
<!DOCTYPE html>
<html>
<head>
<?php include('include/head.php'); ?>
<link rel="stylesheet" type="text/css" href="src/plugins/fullcalendar/fullcalendar.css">
</head>
<body>
<?php include('include/header.php'); ?>
<?php include('include/sidebar.php'); ?>
<div class="main-container">
<div class="pd-ltr-20 customscroll customscroll-10-p height-100-p xs-pd-20-10">
<div class="min-height-200px">
<div class="page-header">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="title">
<h4>Calendar</h4>
</div>
<nav aria-label="breadcrumb" role="navigation">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Calendar</li>
</ol>
</nav>
</div>
</div>
</div>
<div class="pd-20 bg-white box-shadow mb-30">
<div class="row calendar-wrap">
<div class="col-xl-2 col-lg-3 col-md-12 col-sm-12">
<div id='external-events'>
<h4 class="mb-30">Draggable Events</h4>
<div class='fc-event'>My Event 1</div>
<div class='fc-event'>My Event 2</div>
<div class='fc-event'>My Event 3</div>
<div class='fc-event'>My Event 4</div>
<div class='fc-event'>My Event 5</div>
<div class="custom-control custom-checkbox mb-5">
<input type='checkbox' class="custom-control-input" id='drop-remove' />
<label class="custom-control-label" for='drop-remove'>remove after drop</label>
</div>
</div>
</div>
<div class="col-xl-10 col-lg-9 col-md-12 col-sm-12">
<div id='calendar'></div>
</div>
</div>
</div>
</div>
<?php include('include/footer.php'); ?>
</div>
</div>
<?php include('include/script.php'); ?>
<script src="src/plugins/fullcalendar/lib/jquery-ui.min.js"></script>
<script src="src/plugins/fullcalendar/fullcalendar.min.js"></script>
<script>
$(document).ready(function() {

$('#external-events .fc-event').each(function() {
$(this).data('event', {
title: $.trim($(this).text()),
stick: true
});
$(this).draggable({
zIndex: 999,
revert: true,
revertDuration: 0
});

});
$('#calendar').fullCalendar({
themeSystem: 'bootstrap4',
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
droppable: true,
drop: function() {
if ($('#drop-remove').is(':checked')) {
$(this).remove();
}
},
events: [
{
title: 'All Day Event',
start: '2018-04-01'
},
{
title: 'Long Event',
start: '2018-04-07',
end: '2018-04-10'
},
{
id: 999,
title: 'Repeating Event',
start: '2018-04-09T16:00:00'
},
{
id: 999,
title: 'Repeating Event',
start: '2018-04-16T16:00:00'
},
{
title: 'Conference',
start: '2018-04-11',
end: '2018-04-13'
},
{
title: 'Meeting',
start: '2018-04-12T10:30:00',
end: '2018-04-12T12:30:00'
},
{
title: 'Lunch',
start: '2018-04-12T12:00:00'
},
{
title: 'Meeting',
start: '2018-04-12T14:30:00'
},
{
title: 'Happy Hour',
start: '2018-04-12T17:30:00'
},
{
title: 'Dinner',
start: '2018-04-12T20:00:00'
},
{
title: 'Birthday Party',
start: '2018-04-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
start: '2018-04-28'
}
]
});
});
</script>
</body>
</html>
145 changes: 0 additions & 145 deletions form-wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -328,151 +328,6 @@
</div>
</div>

<div class="pd-20 bg-white border-radius-4 box-shadow mb-30">
<div class="clearfix">
<h4 class="text-blue">Step wizard validation</h4>
<p class="mb-30 font-14">jQuery Step wizard</p>
</div>
<div class="wizard-content">
<form class="tab-wizard wizard-circle wizard">
<h5>Personal Info</h5>
<section>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label >First Name :</label>
<input type="text" class="form-control">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label >Last Name :</label>
<input type="text" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Email Address :</label>
<input type="email" class="form-control">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Phone Number :</label>
<input type="text" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Select City :</label>
<select class="custom-select form-control">
<option value="">Select City</option>
<option value="Amsterdam">India</option>
<option value="Berlin">UK</option>
<option value="Frankfurt">US</option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label >Date of Birth :</label>
<input type="text" class="form-control date-picker" placeholder="Select Date">
</div>
</div>
</div>
</section>
<!-- Step 2 -->
<h5>Job Status</h5>
<section>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Job Title :</label>
<input type="text" class="form-control">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Company Name :</label>
<input type="text" class="form-control">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label>Job Description :</label>
<textarea class="form-control"></textarea>
</div>
</div>
</div>
</section>
<!-- Step 3 -->
<h5>Interview</h5>
<section>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Interview For :</label>
<input type="text" class="form-control">
</div>
<div class="form-group">
<label>Interview Type :</label>
<select class="form-control">
<option>Normal</option>
<option>Difficult</option>
<option>Hard</option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Interview Date :</label>
<input type="text" class="form-control date-picker" placeholder="Select Date">
</div>
<div class="form-group">
<label>Interview Time :</label>
<input class="form-control time-picker" placeholder="Select time" type="text">
</div>
</div>
</div>
</section>
<!-- Step 4 -->
<h5>Remark</h5>
<section>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Behaviour :</label>
<input type="text" class="form-control">
</div>
<div class="form-group">
<label>Confidance</label>
<input type="text" class="form-control">
</div>
<div class="form-group">
<label>Result</label>
<select class="form-control">
<option>Select Result</option>
<option>Selected</option>
<option>Rejected</option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Comments</label>
<textarea class="form-control"></textarea>
</div>
</div>
</div>
</section>
</form>
</div>
</div>

<!-- success Popup html Start -->
<div class="modal fade" id="success-modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var path = {
],
scripts: [
config.srcDir + 'scripts/jquery.min.js',
//config.srcDir + 'scripts/moment.js',
config.srcDir + 'scripts/moment.js',
config.srcDir + 'plugins/bootstrap-4.0.0/dist/js/popper.min.js',
config.srcDir + 'plugins/bootstrap-4.0.0/dist/js/bootstrap.js',
config.srcDir + 'plugins/malihu-custom-scrollbar-plugin-master/jquery.mCustomScrollbar.js',
Expand Down
2 changes: 1 addition & 1 deletion include/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<a class="dropdown-item" href="#"><i class="fa fa-user-md" aria-hidden="true"></i> Profile</a>
<a class="dropdown-item" href="#"><i class="fa fa-cog" aria-hidden="true"></i> Setting</a>
<a class="dropdown-item" href="#"><i class="fa fa-question" aria-hidden="true"></i> Help</a>
<a class="dropdown-item" href="#"><i class="fa fa-sign-out" aria-hidden="true"></i> Log Out</a>
<a class="dropdown-item" href="login.php"><i class="fa fa-sign-out" aria-hidden="true"></i> Log Out</a>
</div>
</div>
</div>
Expand Down
58 changes: 58 additions & 0 deletions include/sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
<li><a href="datatable.php">DataTables</a></li>
</ul>
</li>
<li>
<a href="calendar.php" class="dropdown-toggle no-arrow">
<span class="fa fa-calendar-o"></span><span class="mtext">Calendar</span>
</a>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle">
<span class="fa fa-desktop"></span><span class="mtext"> UI Elements </span>
Expand Down Expand Up @@ -85,6 +90,59 @@
<li><a href="500.php">500</a></li>
</ul>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle">
<span class="fa fa-pie-chart"></span><span class="mtext">Chart</span>
</a>
<ul class="submenu">
<li><a href="#">Highchart</a></li>
<li><a href="#">jQuery Knob</a></li>
<li><a href="#">jvectormap</a></li>
</ul>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle">
<span class="fa fa-clone"></span><span class="mtext">Extra Pages</span>
</a>
<ul class="submenu">
<li><a href="#">Blank</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Blog Detail</a></li>
<li><a href="#">Product</a></li>
<li><a href="#">Product Detail</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Pricing Tables</a></li>
</ul>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle">
<span class="fa fa-list"></span><span class="mtext">Multi Level Menu</span>
</a>
<ul class="submenu">
<li><a href="#">Level 1</a></li>
<li><a href="#">Level 1</a></li>
<li><a href="#">Level 1</a></li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle">
<span class="fa fa-plug"></span><span class="mtext">Level 2</span>
</a>
<ul class="submenu child">
<li><a href="#">Level 2</a></li>
<li><a href="#">Level 2</a></li>
</ul>
</li>
<li><a href="#">Level 1</a></li>
<li><a href="#">Level 1</a></li>
<li><a href="#">Level 1</a></li>
</ul>
</li>
<li>
<a href="sitemap.php" class="dropdown-toggle no-arrow">
<span class="fa fa-sitemap"></span><span class="mtext">Sitemap</span>
</a>
</li>
</ul>
</div>
</div>
Expand Down
Loading

0 comments on commit a356f31

Please sign in to comment.