Remove missed php tags in monitor template files

This commit is contained in:
Kyle Johnson 2015-02-17 21:36:27 -05:00
parent cbaec2e17a
commit bf66c20179
2 changed files with 4 additions and 7 deletions

View File

@ -44,9 +44,6 @@
<label for="">Alarm RefImageBlendPct</label> <label for="">Alarm RefImageBlendPct</label>
<input type="text" class="form-control" ng-model="monitor.AlarmRefBlendPerc" value="6" /> <input type="text" class="form-control" ng-model="monitor.AlarmRefBlendPerc" value="6" />
</div> </div>
<div class="form-group">
<label for="">RefImageBlendPct</label>
</div>
<div class="form-group" ng-show="monitor.Type == 'Local'"> <div class="form-group" ng-show="monitor.Type == 'Local'">
<label for="MaxFPS">MaximumFPS</label> <label for="MaxFPS">MaximumFPS</label>
<input type="text" id="MaxFPS" class="form-control" ng-model="monitor.MaxFPS" /> <input type="text" id="MaxFPS" class="form-control" ng-model="monitor.MaxFPS" />
@ -59,7 +56,7 @@
<div class="col-md-4"> <div class="col-md-4">
<div class="form-group"> <div class="form-group">
<label for=""><?= "Target Colorspace" ?></label> <label for="">Target Colorspace</label>
<select required class="form-control" ng-model="monitor.Colours"> <select required class="form-control" ng-model="monitor.Colours">
<option value="1">8 Bit Grey</option> <option value="1">8 Bit Grey</option>
<option value="3">24 Bit Color</option> <option value="3">24 Bit Color</option>

View File

@ -1,14 +1,14 @@
<div ng-show="monitor.Type == 'cURL'"> <div ng-show="monitor.Type == 'cURL'">
<div class="form-group"> <div class="form-group">
<label><?= "URL" ?></label> <label>URL</label>
<input class="form-control" type="text" ng-model="monitor.Path" /> <input class="form-control" type="text" ng-model="monitor.Path" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label><?= "Username" ?></label> <label>Username</label>
<input class="form-control" type="text" ng-model="monitor.User" /> <input class="form-control" type="text" ng-model="monitor.User" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label><?= "Password" ?></label> <label>Password</label>
<input class="form-control" type="text" ng-model="monitor.Pass" /> <input class="form-control" type="text" ng-model="monitor.Pass" />
</div> </div>
</div> </div>