Skip to content
Permalink
c78b080280
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (18 sloc) 645 Bytes
<?php
require_once './includes/header.php';
LogInCheck();
require_once './includes/admin_nav.php';
?>
<form class="navbar-form navbar-left form-inline" role="search">
<div class="form-group">
<input type="date" class="form-control" placeholder="Search">
</div>
<div class="form-group">
<input type="text" value="to" disabled>
</div>
<div class="form-group">
<input type="date" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<?php require_once './includes/footer.php'; ?>