-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
unknown
authored and
unknown
committed
Oct 12, 2021
1 parent
7117101
commit 9d735cd
Showing
4 changed files
with
115 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Police Log in</title> | ||
|
||
<link rel="stylesheet" type="text/css" href="gaurdstyle.css"> | ||
<!-- Google Font: Source Sans Pro --> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"> | ||
<!-- Font Awesome --> | ||
<link rel="stylesheet" href="plugins/fontawesome-free/css/all.min.css"> | ||
<!-- Theme style --> | ||
<link rel="stylesheet" href="dist/css/adminlte.min.css"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" /> | ||
</head> | ||
<body> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<!-- general form elements --> | ||
<div class="card card-primary"> | ||
<div class="card-header"> | ||
<h3 class="card-title">POLICE INFORMATION</h3> | ||
|
||
</div> | ||
<!-- /.card-header --> | ||
<!-- form start --> | ||
<form> | ||
<div class="card-body"> | ||
<div class="row"> | ||
<div class="col-sm-12 text-center"> | ||
<label class="profile"></label> | ||
<div class="card-header bg-transparent text-center"> | ||
<a href=""><img class="rounded-circle" src="dist/img/avatar5.png" style="height: 100px;"></i></a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-sm-4"> | ||
<label>First Name:</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> | ||
</div> | ||
<div class="col-sm-4"> | ||
<label>Middle Name:</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> | ||
</div> | ||
<div class="col-sm-4"> | ||
<label>Last Name:</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<label>Address :</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<label>Specify :</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> | ||
</div> | ||
<div class="col-sm-6"> | ||
<label>Purpose :</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<div class="col-sm-3"> | ||
<label>Date :</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> </div> | ||
<div class="col-sm-3"><label>Time :</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" readonly> | ||
</div> | ||
<div class="col-sm-3"> | ||
<label>Temperature :</label> | ||
<input type="text" class="form-control" id="exampleInputEmail1" placeholder="Enter Temperature"> </div> | ||
</div> | ||
</div> | ||
|
||
<div class="card-footer text-center"> | ||
<button type="submit" class="btn btn-primary">Submit</button> | ||
</div> | ||
|
||
</form> | ||
</div> | ||
<!-- /.card --> | ||
|
||
</div> | ||
</div> | ||
|
||
<script src="plugins/jquery/jquery.min.js"></script> | ||
<!-- Bootstrap 4 --> | ||
<script src="plugins/bootstrap/js/bootstrap.bundle.min.js"></script> | ||
<!-- bs-custom-file-input --> | ||
<script src="plugins/bs-custom-file-input/bs-custom-file-input.min.js"></script> | ||
<!-- AdminLTE App --> | ||
<script src="dist/js/adminlte.min.js"></script> | ||
<!-- AdminLTE for demo purposes --> | ||
<script src="dist/js/demo.js"></script> | ||
<!-- Page specific script --> | ||
<script> | ||
$(function () { | ||
bsCustomFileInput.init(); | ||
}); | ||
</script> | ||
</body> | ||
</html> |