forked from tolson9/4400
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ownerregistation.html
115 lines (108 loc) · 4.1 KB
/
ownerregistation.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html>
<head>
<title>Registration Page</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>New Owner Registration</h1>
</div>
<div class="row">
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" aria-describedby="email" placeholder="Enter email">
</div>
<div class="form-group">
<label for="name">Username</label>
<input type="name" class="form-control" id="name" aria-describedby="username" placeholder="Enter username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="Password">
</div>
<div class="form-group">
<label for="passwordcheck">Password</label>
<input type="password" class="form-control" id="passwordcheck" placeholder="Re-enter Password">
</div>
<div class="form-group">
<label for="propname">Property name</label>
<input type="name" class="form-control" id="propname" aria-describedby="propname" 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">
<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">Submit</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>