"Add-listing form"
Bootstrap 3.0.0 Snippet by jeevan123456

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class ="container paddingTB40 ">
<div class="col-md-3 "> <h6>Sidebar goes here</h6> </div>
<div class="col-md-9 bg-brown">
<form class="form-horizontal marginT20">
<fieldset>
<!-- Form Name -->
<legend>Add Listing</legend>
<!-- Name of business input-->
<div class="form-group">
<div class="col-md-12">
<input id="name" name="name" placeholder="Name of your Service" class="form-control" required="" type="text">
</div>
</div>
<!-- Description -->
<div class="form-group">
<div class="col-md-12">
<textarea class="form-control" id="about" name="about">Write about your business</textarea>
</div>
</div>
<!-- Contact Info-->
<div class="form-group">
<div class="col-md-6">
<input id="" name="" placeholder="Business Phone No." class="form-control" required="" type="text">
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.bg-brown {
background-color: #eaeaea;
box-shadow: 2px 2px 2px #888888;
}
.paddingTB20 {
padding-top : 20px;
padding-bottom:20px;
}
.marginT20 {
margin-top : 20px;
}
textarea.form-control {
background-color: #fff;
color:#b2b1b0;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #e9e6e0;
-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
}
input.form-control {
height: 38px;
background-color: #fff;
color:#000;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #e9e6e0;
-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
}
form-control::-webkit-input-placeholder { color: black; }
.form-control:-moz-placeholder { color: black; }
.form-control::-moz-placeholder { color: black; }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: