{"id":5037,"date":"2024-01-11T16:40:00","date_gmt":"2024-01-11T16:40:00","guid":{"rendered":"https:\/\/codehim.com\/?p=5037"},"modified":"2024-01-22T14:44:26","modified_gmt":"2024-01-22T09:44:26","slug":"bootstrap-multi-step-form-with-progress-bar","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/","title":{"rendered":"Bootstrap Multi Step Form with Progress Bar"},"content":{"rendered":"<p>A multi-step form is a useful feature in regards to user experience especially if you have long forms. This Bootstrap code snippet helps you to create multi step form with a progress bar. This <a href=\"https:\/\/codehim.com\/category\/bootstrap\/bootstrap-forms\/\" target=\"_blank\" rel=\"noopener noreferrer\">Bootstrap form<\/a> template comes with multiple inputs including international telephone input with country flags.<\/p>\n<p>Basically, this is a three steps form template that allows users to navigate to the next and previous form field. When a user clicks the next step, the next field of the form appears. Similarly, the <a href=\"https:\/\/codehim.com\/others\/bootstrap-circle-progress-bar-animation\/\" target=\"_blank\" rel=\"noopener noreferrer\">progress bar<\/a> indicates the status of the inactive\/active steps.<\/p>\n<h2>How to create Multi Step Form using Bootstrap<\/h2>\n<p>1. First of all, load all the necessary CSS files into the head tag of your HTML document. The telephone input and nice select CSS is optional, you can skip them if you just wanted to create a general multi-step form.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;!-- Normalize CSS --&gt;\r\n&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/normalize\/5.0.0\/normalize.min.css\"&gt;\r\n&lt;!-- Bootstrap 4 CSS --&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/twitter-bootstrap\/4.0.0-beta.2\/css\/bootstrap.css'&gt;\r\n&lt;!-- Telephone Input CSS --&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/intl-tel-input\/12.1.2\/css\/intlTelInput.css'&gt;\r\n&lt;!-- Icons CSS --&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/code.ionicframework.com\/ionicons\/2.0.1\/css\/ionicons.min.css'&gt;\r\n&lt;!-- Nice Select CSS --&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery-nice-select\/1.1.0\/css\/nice-select.min.css'&gt;\r\n&lt;!-- Style CSS --&gt;\r\n&lt;link rel=\"stylesheet\" href=\"css\/style.css\"&gt;\r\n<\/pre>\n<p>2. After that, prepare HTML structure for the multi-step form as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;section class=\"multi_step_form\"&gt;  \r\n  &lt;form id=\"msform\"&gt; \r\n    &lt;!-- Tittle --&gt;\r\n    &lt;div class=\"tittle\"&gt;\r\n      &lt;h2&gt;Verification Process&lt;\/h2&gt;\r\n      &lt;p&gt;In order to use this service, you have to complete this verification process&lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n    &lt;!-- progressbar --&gt;\r\n    &lt;ul id=\"progressbar\"&gt;\r\n      &lt;li class=\"active\"&gt;Verify Phone&lt;\/li&gt;  \r\n      &lt;li&gt;Upload Documents&lt;\/li&gt; \r\n      &lt;li&gt;Security Questions&lt;\/li&gt;\r\n    &lt;\/ul&gt;\r\n    &lt;!-- fieldsets --&gt;\r\n    &lt;fieldset&gt;\r\n      &lt;h3&gt;Setup your phone&lt;\/h3&gt;\r\n      &lt;h6&gt;We will send you a SMS. Input the code to verify.&lt;\/h6&gt; \r\n      &lt;div class=\"form-row\"&gt; \r\n        &lt;div class=\"form-group col-md-6\"&gt;  \r\n          &lt;input type=\"tel\" id=\"phone\" class=\"form-control\" placeholder=\"+880\"&gt; \r\n        &lt;\/div&gt;  \r\n        &lt;div class=\"form-group col-md-6\"&gt; \r\n          &lt;input type=\"text\" class=\"form-control\" placeholder=\"+8801123456789\"&gt;\r\n        &lt;\/div&gt; \r\n      &lt;\/div&gt; \r\n      &lt;div class=\"done_text\"&gt; \r\n        &lt;a href=\"#\" class=\"don_icon\"&gt;&lt;i class=\"ion-android-done\"&gt;&lt;\/i&gt;&lt;\/a&gt; \r\n        &lt;h6&gt;A secret code is sent to your phone. &lt;br&gt;Please enter it here.&lt;\/h6&gt; \r\n      &lt;\/div&gt;  \r\n      &lt;div class=\"code_group\"&gt; \r\n        &lt;input type=\"text\" class=\"form-control\" placeholder=\"0\"&gt;\r\n        &lt;input type=\"text\" class=\"form-control\" placeholder=\"0\"&gt;\r\n        &lt;input type=\"text\" class=\"form-control\" placeholder=\"0\"&gt;\r\n        &lt;input type=\"text\" class=\"form-control\" placeholder=\"0\"&gt;\r\n      &lt;\/div&gt;  \r\n      &lt;button type=\"button\" class=\"action-button previous_button\"&gt;Back&lt;\/button&gt;\r\n      &lt;button type=\"button\" class=\"next action-button\"&gt;Continue&lt;\/button&gt;  \r\n    &lt;\/fieldset&gt;\r\n    &lt;fieldset&gt;\r\n      &lt;h3&gt;Verify Your Identity&lt;\/h3&gt;\r\n      &lt;h6&gt;Please upload any of these documents to verify your Identity.&lt;\/h6&gt;\r\n      &lt;div class=\"passport\"&gt;\r\n        &lt;h4&gt;Govt. ID card &lt;br&gt;PassPort &lt;br&gt;Driving License.&lt;\/h4&gt; \r\n        &lt;a href=\"#\" class=\"don_icon\"&gt;&lt;i class=\"ion-android-done\"&gt;&lt;\/i&gt;&lt;\/a&gt; \r\n      &lt;\/div&gt;\r\n      &lt;div class=\"input-group\"&gt; \r\n        &lt;div class=\"custom-file\"&gt;\r\n          &lt;input type=\"file\" class=\"custom-file-input\" id=\"upload\"&gt;\r\n          &lt;label class=\"custom-file-label\" for=\"upload\"&gt;&lt;i class=\"ion-android-cloud-outline\"&gt;&lt;\/i&gt;Choose file&lt;\/label&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n      &lt;ul class=\"file_added\"&gt;\r\n        &lt;li&gt;File Added:&lt;\/li&gt;\r\n        &lt;li&gt;&lt;a href=\"#\"&gt;&lt;i class=\"ion-paperclip\"&gt;&lt;\/i&gt;national_id_card.png&lt;\/a&gt;&lt;\/li&gt;\r\n        &lt;li&gt;&lt;a href=\"#\"&gt;&lt;i class=\"ion-paperclip\"&gt;&lt;\/i&gt;national_id_card_back.png&lt;\/a&gt;&lt;\/li&gt;\r\n      &lt;\/ul&gt;\r\n      &lt;button type=\"button\" class=\"action-button previous previous_button\"&gt;Back&lt;\/button&gt;\r\n      &lt;button type=\"button\" class=\"next action-button\"&gt;Continue&lt;\/button&gt;  \r\n    &lt;\/fieldset&gt;  \r\n    &lt;fieldset&gt;\r\n      &lt;h3&gt;Create Security Questions&lt;\/h3&gt;\r\n      &lt;h6&gt;Please update your account with security questions&lt;\/h6&gt; \r\n      &lt;div class=\"form-group\"&gt; \r\n        &lt;select class=\"product_select\"&gt;\r\n          &lt;option data-display=\"1. Choose A Question\"&gt;1. Choose A Question&lt;\/option&gt; \r\n          &lt;option&gt;2. Choose A Question&lt;\/option&gt;\r\n          &lt;option&gt;3. Choose A Question&lt;\/option&gt; \r\n        &lt;\/select&gt;\r\n      &lt;\/div&gt; \r\n      &lt;div class=\"form-group fg_2\"&gt; \r\n        &lt;input type=\"text\" class=\"form-control\" placeholder=\"Anwser here:\"&gt;\r\n      &lt;\/div&gt; \r\n      &lt;div class=\"form-group\"&gt; \r\n        &lt;select class=\"product_select\"&gt;\r\n          &lt;option data-display=\"1. Choose A Question\"&gt;1. Choose A Question&lt;\/option&gt; \r\n          &lt;option&gt;2. Choose A Question&lt;\/option&gt;\r\n          &lt;option&gt;3. Choose A Question&lt;\/option&gt; \r\n        &lt;\/select&gt;\r\n      &lt;\/div&gt; \r\n      &lt;div class=\"form-group fg_3\"&gt; \r\n        &lt;input type=\"text\" class=\"form-control\" placeholder=\"Anwser here:\"&gt;\r\n      &lt;\/div&gt; \r\n      &lt;button type=\"button\" class=\"action-button previous previous_button\"&gt;Back&lt;\/button&gt; \r\n      &lt;a href=\"#\" class=\"action-button\"&gt;Finish&lt;\/a&gt; \r\n    &lt;\/fieldset&gt;  \r\n  &lt;\/form&gt;  \r\n&lt;\/section&gt; \r\n<\/pre>\n<p>3. Finally, load the <a href=\"https:\/\/jquery.com\/download\" target=\"_blank\" rel=\"noopener noreferrer\">jQuery<\/a>, <a href=\"https:\/\/getbootstrap.com\/docs\/4.0\/getting-started\/javascript\/\" target=\"_blank\" rel=\"noopener noreferrer\">Bootstrap 4 JS<\/a>, Popper JS, and multi-step form initialization script just before closing the body tag. The jQuery Easing library and telephone input JS are optional.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;!-- jQuery --&gt;\r\n&lt;script src='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/3.2.1\/jquery.min.js'&gt;&lt;\/script&gt;\r\n&lt;!-- Bootstrap JS --&gt;\r\n&lt;script src='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/twitter-bootstrap\/4.0.0-beta\/js\/bootstrap.min.js'&gt;&lt;\/script&gt;\r\n&lt;!-- jQuery Easing JS --&gt;\r\n&lt;script src='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery-easing\/1.3\/jquery.easing.min.js'&gt;&lt;\/script&gt;\r\n&lt;!-- Telephone Input JS --&gt;\r\n&lt;script src='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/intl-tel-input\/12.1.2\/js\/intlTelInput.js'&gt;&lt;\/script&gt;\r\n&lt;!-- Popper JS --&gt;\r\n&lt;script src='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/popper.js\/1.12.9\/umd\/popper.min.js'&gt;&lt;\/script&gt;\r\n&lt;!-- jQuery Nice Select JS --&gt;\r\n&lt;script src='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery-nice-select\/1.1.0\/js\/jquery.nice-select.min.js'&gt;&lt;\/script&gt;\r\n&lt;!-- Initialization --&gt;\r\n&lt;script src=\"js\/script.js\"&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>That&#8217;s all! Hopefully, this code snippet helps you to build a Bootstrap multi step form with progress bar. If you have any questions or suggestions, let us know by comment below.<\/p>\n<p>See what media say about our webinar:<\/p>\n<p class=\"display-4 mb-4 article-headline\"><a href=\"https:\/\/techplanet.today\/post\/survey-report-ai-usage-in-frontend-codeprogramming-a-global-perspective\">Survey Report: AI Usage in Frontend Code\/Programming &#8211; A Global Perspective<\/a><\/p>\n<p><a href=\"https:\/\/www.digitaljournal.com\/pr\/news\/cdn-newswire\/unlocking-the-full-potentials-of-artificial-intelligence-in-front-end-development-codehim-s-ai-magic\">Unlocking The Full Potentials Of Artificial Intelligence In Front-End Development: CodeHim\u2019s AI Magic<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A multi-step form is a useful feature in regards to user experience especially if you have long forms. This Bootstrap&#8230;<\/p>\n","protected":false},"author":1,"featured_media":5038,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123,134,232],"tags":[],"class_list":["post-5037","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap","category-bootstrap-forms","category-forms"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bootstrap Multi Step Form with Progress Bar &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is source code for Bootstrap 4 multi step form with progress bar. You can view demo and download code to create multi step form.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap Multi Step Form with Progress Bar &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is source code for Bootstrap 4 multi step form with progress bar. You can view demo and download code to create multi step form.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-11T16:40:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:44:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Bootstrap Multi Step Form with Progress Bar\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:44:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/\"},\"wordCount\":254,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png\",\"articleSection\":[\"Bootstrap\",\"Bootstrap Forms\",\"Forms\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/\",\"name\":\"Bootstrap Multi Step Form with Progress Bar &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:44:26+00:00\",\"description\":\"Here is source code for Bootstrap 4 multi step form with progress bar. You can view demo and download code to create multi step form.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png\",\"width\":1280,\"height\":960,\"caption\":\"Multi Step Form with Progress Bar Bootstrap\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap Forms\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/bootstrap-forms\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Bootstrap Multi Step Form with Progress Bar\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Bootstrap Multi Step Form with Progress Bar &#8212; CodeHim","description":"Here is source code for Bootstrap 4 multi step form with progress bar. You can view demo and download code to create multi step form.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap Multi Step Form with Progress Bar &#8212; CodeHim","og_description":"Here is source code for Bootstrap 4 multi step form with progress bar. You can view demo and download code to create multi step form.","og_url":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T16:40:00+00:00","article_modified_time":"2024-01-22T09:44:26+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Bootstrap Multi Step Form with Progress Bar","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:44:26+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/"},"wordCount":254,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png","articleSection":["Bootstrap","Bootstrap Forms","Forms"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/","url":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/","name":"Bootstrap Multi Step Form with Progress Bar &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:44:26+00:00","description":"Here is source code for Bootstrap 4 multi step form with progress bar. You can view demo and download code to create multi step form.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2020\/09\/multi-step-form-with-progress-bar-bootstrap.png","width":1280,"height":960,"caption":"Multi Step Form with Progress Bar Bootstrap"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-forms\/bootstrap-multi-step-form-with-progress-bar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap","item":"https:\/\/codehim.com\/category\/bootstrap\/"},{"@type":"ListItem","position":3,"name":"Bootstrap Forms","item":"https:\/\/codehim.com\/category\/bootstrap\/bootstrap-forms\/"},{"@type":"ListItem","position":4,"name":"Bootstrap Multi Step Form with Progress Bar"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":35394,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5037","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=5037"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5037\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/5038"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=5037"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=5037"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=5037"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}