definicao de layout
This commit is contained in:
92
public/assets/pug/pages/template/form-wizard-three.pug
Normal file
92
public/assets/pug/pages/template/form-wizard-three.pug
Normal file
@@ -0,0 +1,92 @@
|
||||
- var theme_customizer = true;
|
||||
- var form_wizard_three = true;
|
||||
|
||||
doctype html
|
||||
html(lang='en')
|
||||
include ../../components/header-files
|
||||
body
|
||||
include ../../components/loader
|
||||
// page-wrapper Start
|
||||
#pageWrapper.page-wrapper
|
||||
include ../../components/header
|
||||
// Page Body Start
|
||||
.page-body-wrapper.horizontal-menu
|
||||
include ../../components/sidebar
|
||||
.page-body
|
||||
.container-fluid
|
||||
.page-header
|
||||
.row
|
||||
.col-sm-6
|
||||
h3
|
||||
| Form Wizard With Icon
|
||||
ol.breadcrumb
|
||||
li.breadcrumb-item
|
||||
a(href='index.html')
|
||||
| Home
|
||||
li.breadcrumb-item Forms
|
||||
li.breadcrumb-item Form Layout
|
||||
li.breadcrumb-item.active Form Wizard 3
|
||||
.col-sm-6
|
||||
include ../../components/bookmark
|
||||
// Container-fluid starts
|
||||
.container-fluid
|
||||
.row
|
||||
.col-sm-12
|
||||
.card
|
||||
.card-header.pb-0
|
||||
h5 Form Wizard with icon
|
||||
.card-body
|
||||
form.f1(method='post')
|
||||
.f1-steps
|
||||
.f1-progress
|
||||
.f1-progress-line(data-now-value='16.66', data-number-of-steps='3')
|
||||
.f1-step.active
|
||||
.f1-step-icon
|
||||
i.fa.fa-user
|
||||
p Registration
|
||||
.f1-step
|
||||
.f1-step-icon
|
||||
i.fa.fa-key
|
||||
p Email
|
||||
.f1-step
|
||||
.f1-step-icon
|
||||
i.fa.fa-twitter
|
||||
p Birth Date
|
||||
fieldset
|
||||
.form-group
|
||||
label(for='f1-first-name') First Name
|
||||
input#f1-first-name.form-control(type='text', name='f1-first-name', placeholder='name@example.com', required='')
|
||||
.form-group
|
||||
label(for='f1-last-name') Last name
|
||||
input#f1-last-name.f1-last-name.form-control(type='text', name='f1-last-name', placeholder='Last name...', required='')
|
||||
.f1-buttons
|
||||
button.btn.btn-primary.btn-next(type='button') Next
|
||||
fieldset
|
||||
.form-group
|
||||
label.sr-only(for='f1-email') Email
|
||||
input#f1-email.f1-email.form-control(type='text', name='f1-email', placeholder='Email...', required='')
|
||||
.form-group
|
||||
label.sr-only(for='f1-password') Password
|
||||
input#f1-password.f1-password.form-control(type='password', name='f1-password', placeholder='Password...', required='')
|
||||
.form-group
|
||||
label.sr-only(for='f1-repeat-password') Repeat password
|
||||
input#f1-repeat-password.f1-repeat-password.form-control(type='password', name='f1-repeat-password', placeholder='Repeat password...', required='')
|
||||
.f1-buttons
|
||||
button.btn.btn-primary.btn-previous(type='button') Previous
|
||||
button.btn.btn-primary.btn-next(type='button') Next
|
||||
fieldset
|
||||
.form-group
|
||||
label.sr-only DD
|
||||
input#dd.form-control(type='number', placeholder='dd', required='')
|
||||
.form-group
|
||||
label.sr-only MM
|
||||
input#mm.form-control(type='number', placeholder='mm', required='')
|
||||
.form-group
|
||||
label.sr-only YYYY
|
||||
input#yyyy.form-control(type='number', placeholder='yyyy', required='')
|
||||
.f1-buttons
|
||||
button.btn.btn-primary.btn-previous(type='button') Previous
|
||||
button.btn.btn-primary.btn-submit(type='submit') Submit
|
||||
// Container-fluid Ends
|
||||
include ../../components/footer
|
||||
include ../../components/footer-files
|
||||
Reference in New Issue
Block a user