forked from rsaudubr/Virtual_Visual_WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd.html
More file actions
37 lines (36 loc) · 1.67 KB
/
add.html
File metadata and controls
37 lines (36 loc) · 1.67 KB
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
<div ng-controller="addCtrl">
<form class="form-horizontal" id="addBeacon">
<fieldset>
<!-- Form Name -->
<legend>Add an iBeacon</legend>
<center>
<div id="maTable">
<table class="table table-bordered" id="tableAdd">
<tr>
<td><label class="control-label" for="uuid">UUID</label></td>
<td colspan=3><input id="uuid" name="uuid" type="text" placeholder="iBeacon" class="form-control" required=""></td>
</tr>
<tr>
<td colspan=2><label class="control-label" for="identifier">Identifier</label></td>
<td colspan=2 align="left"><input id="identifier" name="identifier" type="text" placeholder="identifier" class="form-control" required=""></td>
</tr>
<tr>
<td><label class="control-label" for="minor">Minor</label></td>
<td><input id="minor" name="minor" type="number" placeholder="minor" class="form-control"></td>
<td><label class="control-label" for="major">Major</label></td>
<td><input id="major" name="major" type="number" placeholder="major" class="form-control"></td>
</tr>
<tr>
<td colspan=2><label class="control-label" for="calibrated">txCalibrated</label></td>
<td colspan =2><input id="calibrated" name="calibrated" type="text" placeholder="" class="form-control" required=""></td>
</tr>
<tr>
<td colspan=2 align="right"><button id="submit" name="submit" class="btn btn-success" onclick="addBeacon();" action="addBeacon.js">Validate</button></td>
<td colspan=2 align="left"><button id="cancel" name="cancel" class="btn btn-danger" type="reset">Cancel</button></td>
</tr>
</table>
</div>
</center>
</fieldset>
</form>
</div>