forked from AppStateESS/systemsinventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearch_System.html
76 lines (76 loc) · 3.24 KB
/
Search_System.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<div class="systems-search-section search-section">
<form action="<?=$form_action?>" method="post" class="phpws-form">
<div class="row">
<legend>Systems Search</legend>
<div class="col-sm-3">
<fieldset>
<div class="form-group">
<label for="system_type">System Type</label><br />
<select name="system_type">
<?=$system_types?>
</select>
</div>
</fieldset>
</div>
<div class="col-sm-3">
<fieldset>
<div class="form-group">
<label for="department">Department</label><br />
<select name="department">
<?=$departments?>
</select>
</div>
</fieldset>
</div>
<div class="col-sm-3">
<fieldset>
<div class="form-group">
<label for="location">Location</label><br />
<select name="location">
<?=$locations?>
</select>
</div>
</fieldset>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<fieldset>
<div class="form-group">
<label for="physical_id">Physical ID</label>
<input name="physical_id" id="physical-id" type="text" class="form-control" value="" />
</div>
<div class="form-group">
<label for="model">Model</label>
<input name="model" id="model" type="text" class="form-control" value="" />
</div>
</fieldset>
</div>
<div class="col-sm-3">
<fieldset>
<div class="form-group">
<label for="mac">MAC Address</label>
<input id="mac" name="mac" type="text" class="form-control" placeholder="XX:XX:XX:XX:XX:XX"value="" />
</div>
<div class="form-group">
<label for="ip">IP Address</label>
<input id="ip" name="ip" type="text" class="form-control" placeholder="XXX.XXX.XXX.XXX"value="" />
</div>
</fieldset>
</div>
<div class="col-sm-3">
<fieldset>
<div class="form-group">
<label for="purchase_date">Purchase Date</label>
<input id="purchase-date" name="purchase_date" type="date" class="form-control" value="" />
</div>
<div class="form-group">
<label for="username">Username</label>
<input name="username" id="username" type="text" class="form-control" value="" />
</div>
</fieldset>
</div>
</div>
<input class="btn btn-primary" type="submit" value="Search" />
</form>
</div>