Skip to content

Commit f4b76ca

Browse files
author
Nolan Perry
authored
Add Estate Settings Form
1 parent 95b87c0 commit f4b76ca

1 file changed

Lines changed: 55 additions & 73 deletions

File tree

application/views/land/estate.php

Lines changed: 55 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -106,80 +106,62 @@
106106
<div class="tab-pane" id="settings">
107107

108108
<hr>
109-
<form class="form" action="##" method="post" id="registrationForm">
110-
<div class="form-group">
109+
<form class="form-horizontal">
110+
<fieldset>
111+
112+
<!-- Form Name -->
113+
<legend>Estate Settings</legend>
114+
115+
<!-- Text input-->
116+
<div class="form-group">
117+
<label class="col-md-4 control-label" for="estatesettings-name">Estate Name</label>
118+
<div class="col-md-4">
119+
<input id="estatesettings-name" name="estatesettings-name" type="text" placeholder="Couldn't Get Estate Name" class="form-control input-md">
120+
<span class="help-block">Your State</span>
121+
</div>
122+
</div>
123+
124+
<!-- Multiple Radios -->
125+
<div class="form-group">
126+
<label class="col-md-4 control-label" for="estatesettings-voice">Estate Voice Status</label>
127+
<div class="col-md-4">
128+
<div class="radio">
129+
<label for="estatesettings-voice-0">
130+
<input type="radio" name="estatesettings-voice" id="estatesettings-voice-0" value="1" checked="checked">
131+
<b>Enable</b> Voice
132+
</label>
133+
</div>
134+
<div class="radio">
135+
<label for="estatesettings-voice-1">
136+
<input type="radio" name="estatesettings-voice" id="estatesettings-voice-1" value="0">
137+
<b>Disable</b> Voice
138+
</label>
139+
</div>
140+
</div>
141+
</div>
142+
143+
<!-- Multiple Radios -->
144+
<div class="form-group">
145+
<label class="col-md-4 control-label" for="estatesettings-denyminors">Allow Minors(Under 18 In Real Life) in your Estate?</label>
146+
<div class="col-md-4">
147+
<div class="radio">
148+
<label for="estatesettings-denyminors-0">
149+
<input type="radio" name="estatesettings-denyminors" id="estatesettings-denyminors-0" value="1" checked="checked">
150+
<b>Allow</b> Minors
151+
</label>
152+
</div>
153+
<div class="radio">
154+
<label for="estatesettings-denyminors-1">
155+
<input type="radio" name="estatesettings-denyminors" id="estatesettings-denyminors-1" value="0">
156+
<b>Block</b> Minors
157+
</label>
158+
</div>
159+
</div>
160+
</div>
161+
162+
</fieldset>
163+
</form>
111164

112-
<div class="col-xs-6">
113-
<label for="first_name">
114-
<h4>First name</h4></label>
115-
<input type="text" class="form-control" name="first_name" id="first_name" placeholder="first name" title="enter your first name if any.">
116-
</div>
117-
</div>
118-
<div class="form-group">
119-
120-
<div class="col-xs-6">
121-
<label for="last_name">
122-
<h4>Last name</h4></label>
123-
<input type="text" class="form-control" name="last_name" id="last_name" placeholder="last name" title="enter your last name if any.">
124-
</div>
125-
</div>
126-
127-
<div class="form-group">
128-
129-
<div class="col-xs-6">
130-
<label for="phone">
131-
<h4>Phone</h4></label>
132-
<input type="text" class="form-control" name="phone" id="phone" placeholder="enter phone" title="enter your phone number if any.">
133-
</div>
134-
</div>
135-
136-
<div class="form-group">
137-
<div class="col-xs-6">
138-
<label for="mobile">
139-
<h4>Mobile</h4></label>
140-
<input type="text" class="form-control" name="mobile" id="mobile" placeholder="enter mobile number" title="enter your mobile number if any.">
141-
</div>
142-
</div>
143-
<div class="form-group">
144-
145-
<div class="col-xs-6">
146-
<label for="email">
147-
<h4>Email</h4></label>
148-
<input type="email" class="form-control" name="email" id="email" placeholder="you@email.com" title="enter your email.">
149-
</div>
150-
</div>
151-
<div class="form-group">
152-
153-
<div class="col-xs-6">
154-
<label for="email">
155-
<h4>Location</h4></label>
156-
<input type="email" class="form-control" id="location" placeholder="somewhere" title="enter a location">
157-
</div>
158-
</div>
159-
<div class="form-group">
160-
161-
<div class="col-xs-6">
162-
<label for="password">
163-
<h4>Password</h4></label>
164-
<input type="password" class="form-control" name="password" id="password" placeholder="password" title="enter your password.">
165-
</div>
166-
</div>
167-
<div class="form-group">
168-
169-
<div class="col-xs-6">
170-
<label for="password2">
171-
<h4>Verify</h4></label>
172-
<input type="password" class="form-control" name="password2" id="password2" placeholder="password2" title="enter your password2.">
173-
</div>
174-
</div>
175-
<div class="form-group">
176-
<div class="col-xs-12">
177-
<br>
178-
<button class="btn btn-lg btn-success" type="submit"><i class="glyphicon glyphicon-ok-sign"></i> Save</button>
179-
<button class="btn btn-lg" type="reset"><i class="glyphicon glyphicon-repeat"></i> Reset</button>
180-
</div>
181-
</div>
182-
</form>
183165
</div>
184166

185167
</div>

0 commit comments

Comments
 (0)