forked from tolson9/4400
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addproperty.html
99 lines (92 loc) · 3.27 KB
/
addproperty.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<html>
<head>
<title>Add Property</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<br>
<div class="row">
<div class="hidden-xs-down col-sm-4"></div>
<div class="col-xs-12 col-sm-4">
<div class="container-fluid">
<div class="jumbotron">
<div class="row">
<h1>Add Property</h1>
</div>
<div class="row">
<div class="form-group">
<label for="name">Property Name</label>
<input type="name" class="form-control" id="name" aria-describedby="name" placeholder="Enter Property Name">
</div>
<div class="form-group">
<label for="addr">Street Address</label>
<input type="name" class="form-control" id="addr" aria-describedby="address" placeholder="Enter Address">
</div>
<div class="form-group">
<label for="city">City</label>
<input type="name" class="form-control" id="city" aria-describedby="city" placeholder="Enter city">
</div>
<div class="form-group">
<label for="zip">Zipcode</label>
<input type="name" class="form-control" id="zip" aria-describedby="zipcode" placeholder="Enter zipcode">
</div>
<div class="form-group">
<label for="acres">Acres</label>
<input type="name" class="form-control" id="acres" aria-describedby="acres" placeholder="Enter acres">
</div>
<div class="form-group">
<label for="proptype">Property Type</label>
<select class="form-control" id="proptype">
<option>Farm</option>
<option>Garden</option>
<option>Orchard</option>
</select>
</div>
<div class="form-group hidden">
<label for="animal">Animal</label>
<select class="form-control" id="animal">
<option>None</option>
</select>
</div>
<div class="form-group">
<label for="crop">Crop</label>
<select class="form-control" id="crop">
<option>None</option>
</select>
</div>
<div class="form-group">
<label for="public">Public?</label>
<select class="form-control" id="public">
<option>Yes</option>
<option>No</option>
</select>
</div>
<div class="form-group">
<label for="commercial">Commercial?</label>
<select class="form-control" id="commercial">
<option>Yes</option>
<option>No</option>
</select>
</div>
</div>
<div class="row">
<div class="col-xs-6 text-center">
<a href="#" class="btn btn-primary">Add Property</a>
</div>
<div class="col-xs-6 text-center">
<a href="login.html" class="btn btn-info">Back</a>
</div>
</div>
</div>
</div>
</div>
<div class="hidden-xs-down col-sm-4"></div>
</div>
</div>
</body>
</html>