-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminalconfig.php
57 lines (50 loc) · 2.14 KB
/
terminalconfig.php
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
<?php include 'includes/header.php';?>
<div class="container">
<br><br>
<div class="card p-5">
<h3>Add Printer</h3>
<form action="terminalprinterx.php" method="post" name="form1">
<div class="form-row">
<div class="form-group col-md-6">
<label>Printer Name</label>
<input type="text" name="name" class="form-control" placeholder="">
</div>
<div class="form-group col-md-6">
<label>Connection Type</label>
<select name= "ctype" class=" search-box form-control" searchable id="cars">
<option>Network</option>
<option>Window</option>
<option>Linux</option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-4">
<label>Capability Profile</label>
<select name= "cprofile" class=" search-box form-control" searchable id="cars">
<option>Default</option>
<option>Simple</option>
<option>Star Branded</option>
<option>Espon Tep</option>
<option>P822D</option>
</select>
</div>
<div class="form-group col-md-4">
<label>Characters Per Line</label>
<input type="text" name="charactername" class="form-control" value="42">
</div>
<div class="form-group col-md-4">
<label>Path</label>
<input type="text" name="path" class="form-control" placeholder="Name">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<input type="submit"class="btn btn-primary" name="Submit" value="Add Printer">
</div>
</div>
</form>
</div>
<br><br>
</div>
<?php include 'includes/footer.php';?>