-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-fixture.php
29 lines (26 loc) · 1018 Bytes
/
new-fixture.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
<?php
$head = ['title'=>'New Fixture'];
$header='New <strong>Fixture</strong>';
include 'classes/header.php';
?>
<div class="contain">
<form name="postForm" id="postForm" enctype="multipart/form-data" action="scan.php" method="post">
<div style="margin: 0 auto; padding-top: 10px; width: 150px; text-align: center;">
<label><strong>New Fixture #:</strong><br><br>
<input type="text" size="10" id="fixnum" name="fixnum" tabindex="2" required>
</label>
<!--<span><strong style="margin-left: 20px;"> shelf #:</strong>
<input type="text" size="6" id="shelfnum" name="shelfnum" tabindex="2">
</span>
<span><strong style="margin-left: 20px;"> box #:</strong>
<input type="text" size="3" id="boxnum" name="boxnum" tabindex="2">
</span>-->
</div><br>
<div class="subForm">
<span>
<input class="button textcenter" type="submit" id="submit" title="Submit" value="Submit" tabindex="13"/>
</span>
</div>
</form>
</div>
<?php include 'classes/footer.php'; ?>