"gg"
Bootstrap 3.3.0 Snippet by ganesapr

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ----------> <html> <head> <script src="jquery-1.11.2.min.js"></script> <script src="bootstrap.min.js"></script> <link rel="stylesheet" src="bootstrap.min.css"> </head> </body> <body> <div class="container"> <cfoutput> <form method = "post" action = "jobpostaction.cfm"> <input type="hidden" name="job_Id" value="#url.job_Id#"> <div class="row"> <div class="form-group col-xs-4"> <label>Company Name</label> <input type = "text" class="form-control" name = "companyname" value="#getJobs.CompanyName#"> </div> < <div class="form-inline col-xs-4"> <label>website</label><br> <label class="sr-only" for="website">website</label> <div class="input-group"> <div class="input-group-addon">http://</div> <input type = "text" class="form-control col-xs-4" name = "website" value="#getJobs.website#"> </div> </div> </div> <div class="row"> <div class="form-group col-xs-4"> <label>Job Title</label> <input type = "text" class="form-control" name = "jobtitle" value="#getJobs.jobtitle#"> </div> <div class="form-inline col-xs-6"> <label>Job Type</label><br> <select name="jobtype_Id" class="form-control"> <cfloop query = "getJobtype"> <option <cfif getJobs.jobtype_Id eq getJobtype.jobtype_Id>selected </cfif> value="#getJobtype.jobtype_Id#">#getJobtype.jobtype# </option> </cfloop> </select> </div> </div> <div class="row"> <div class="form-group col-xs-2"> <label>JobLocation</label> <input type = "text" class="form-control" name = "joblocation" value="#getJobs.joblocation#"> </div> <div class="form-inline col-xs-2"> <label>country</label> <select name="country_Id" class="form-control"> <cfloop query = "getCountry"> <option class="form-control" <cfif getJobs.country_Id eq getCountry.country_Id >selected </cfif> value="#getCountry.country_Id#">#getCountry.countryname#</option> </cfloop> </select> </div> <div class="form-inline col-xs-4"> <label>Email</label><br> <input type = "text" class="form-control" name = "email" value="#getJobs.email#" > </div> </div> <div class="row"> <div class="form-group col-xs-7"> <label>Description</label> <textarea class="form-control"row="3" name="jobsdesc">#getJobs.jobsdesc#</textarea> </div> </div> <div class="form-group"> <input type="submit" name="submit" value="submit"> </div> </form> </cfoutput> </div> </body>

Related: See More


Questions / Comments: