Add search box
This commit is contained in:
parent
89e5e4bd9f
commit
966fde819f
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
"Public Notes": "Public Notes",
|
"Public Notes": "Public Notes",
|
||||||
"Private Notes": "Private Notes"
|
"Private Notes": "Private Notes",
|
||||||
|
"Machine ID": "Machine ID"
|
||||||
}
|
}
|
@ -4,6 +4,29 @@
|
|||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-12 col-md-6">
|
||||||
|
<form action="app.php" method="get">
|
||||||
|
<input type="hidden" name="page" value="viewmachine" />
|
||||||
|
<div class="input-group">
|
||||||
|
<input type="text" class="form-control" name="id" id="quicklookup_box" placeholder="<?php $Strings->get("Machine ID"); ?>"/>
|
||||||
|
<div class="input-group-append">
|
||||||
|
<?php
|
||||||
|
if (isset($_SESSION['mobile']) && $_SESSION['mobile']) {
|
||||||
|
?>
|
||||||
|
<span class="btn btn-default" onclick="scancode('#quicklookup_box');">
|
||||||
|
<i class="fas fa-barcode fa-fw"></i>
|
||||||
|
</span>
|
||||||
|
<?php } ?>
|
||||||
|
<button type="submit" class="btn btn-primary">
|
||||||
|
<i class="fas fa-search fa-fw"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-4">
|
<div class="col-12 col-md-4">
|
||||||
<div class="card bg-green text-light">
|
<div class="card bg-green text-light">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user