-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIPage_html.html
More file actions
43 lines (40 loc) · 1.11 KB
/
UIPage_html.html
File metadata and controls
43 lines (40 loc) · 1.11 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
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<h1>Add a new Dog</h1>
<form class="form-horizontal">
<div class="form-group">
<label for="dogName" class="col-sm-2 control-label">Name of dog:</label>
<div class="col-sm-4">
<input type="text" class="form-control" id="dogName" />
</div>
</div>
<div class="form-group">
<label for="dogAge" class="col-sm-2 control-label">Age of dog:</label>
<div class="col-sm-4">
<input type="text" class="form-control" id="dogAge" />
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input id="dogShots" type="checkbox" />
Shots
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input id="dogNeutered" type="checkbox" />
Neutered
</label>
</div>
</div>
</div>
</form>
<button id="addDog" class="btn btn-default">Add Dog</button>
<div id="msg"></div>
</j:jelly>