Fixed system creation form

Added serviceTag field
Fixed System type filed
This commit is contained in:
2022-01-19 12:37:43 +01:00
parent 506b49f11d
commit 0481dc380e
2 changed files with 22 additions and 13 deletions

View File

@@ -213,15 +213,15 @@ mysqli_close($link);
</div> </div>
<!-- /PREPEND EXAMPLE --> <!-- /PREPEND EXAMPLE -->
<!-- Text input--> <!-- Text input-->
<div class="form-group"> <div class="form-group">
<label class="col-md-4 control-label" for="ServiceTag">System type <span style="color:red">*</span></label> <label class="col-md-4 control-label" for="sysType">System type <span style="color:red">*</span></label>
<div class="col-md-4"> <div class="col-md-4">
<input id="ServiceTag" name="ServiceTag" type="text" placeholder="" class="form-control input-md" required=""> <input id="ServiceTag" name="ServiceTag" type="text" placeholder="" class="form-control input-md" required="">
</div> </div>
</div> </div>
<!-- Select Basic --> <!-- Select Basic -->
<div class="form-group"> <div class="form-group">
<label class="col-md-4 control-label" for="location">Location <span style="color:red">*</span></label> <label class="col-md-4 control-label" for="location">Location <span style="color:red">*</span></label>
@@ -234,14 +234,6 @@ mysqli_close($link);
</div> </div>
</div> </div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="WinKey">Windows key <span style="color:red">*</span></label>
<div class="col-md-4">
<input id="WinKey" name="WinKey" type="WinKey" placeholder="" class="form-control input-md" required="">
</div>
</div>
<!-- Text input--> <!-- Text input-->
<div class="form-group"> <div class="form-group">
<label class="col-md-4 control-label" for="EthMac">Mac addres <span style="color:red">*</span></label> <label class="col-md-4 control-label" for="EthMac">Mac addres <span style="color:red">*</span></label>
@@ -255,6 +247,23 @@ mysqli_close($link);
</form> </form>
</div> </div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="WinKey">Windows key <span style="color:red">*</span></label>
<div class="col-md-4">
<input id="WinKey" name="WinKey" type="WinKey" placeholder="" class="form-control input-md" required="">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="ServiceTag">Service Tag/Serial nr<span style="color:red">*</span></label>
<div class="col-md-4">
<input id="ServiceTag" name="ServiceTag" type="text" placeholder="" class="form-control input-md" required="">
</div>
</div>
<!-- / CONTENT --> <!-- / CONTENT -->

View File

@@ -49,7 +49,7 @@ if(isset($_POST["id"]) && !empty($_POST["id"])){
$input_ServiceTag = trim($_POST["ServiceTag"]); $input_ServiceTag = trim($_POST["ServiceTag"]);
if(empty($input_ServiceTag)){ if(empty($input_ServiceTag)){
$ServiceTag_err = "Please enter a Windows Key"; $ServiceTag_err = "Please enter a Servicetag/Serial nr";
} else{ } else{
$ServiceTag = $input_ServiceTag; $ServiceTag = $input_ServiceTag;
} }
@@ -367,7 +367,7 @@ $lines = explode("\n", $trimmedString);
</div> </div>
<div class="form-group col-md-4 <?php echo (!empty($ServiceTag_err)) ? 'has-error' : ''; ?>"> <div class="form-group col-md-4 <?php echo (!empty($ServiceTag_err)) ? 'has-error' : ''; ?>">
<label>Service Tag</label> <label>Service Tag/Serial nr</label>
<input type="text" name="ServiceTag" class="form-control" value="<?php echo $ServiceTag; ?>"> <input type="text" name="ServiceTag" class="form-control" value="<?php echo $ServiceTag; ?>">
<span class="help-block"><?php echo $ServiceTag_err;?></span> <span class="help-block"><?php echo $ServiceTag_err;?></span>
</div> </div>