64 lines
2.7 KiB
Plaintext
64 lines
2.7 KiB
Plaintext
- var sidebar = false
|
|
doctype html
|
|
html(lang='en')
|
|
include ../../components/header-files
|
|
body
|
|
// login page start
|
|
.container-fluid.p-0
|
|
.row.m-0
|
|
.col-12.p-0
|
|
.login-card
|
|
div
|
|
div
|
|
a.logo(href="index.html")
|
|
img.img-fluid.for-light(src="../assets/images/logo/logo.png" alt="looginpage" )
|
|
img.img-fluid.for-dark(src="../assets/images/logo/logo_dark.png" alt="looginpage" )
|
|
|
|
.login-main
|
|
form.theme-form
|
|
h4 Create your account
|
|
p Enter your personal details to create account
|
|
.form-group
|
|
label.col-form-label.pt-0 Your Name
|
|
.row.g-2
|
|
.col-6
|
|
input.form-control(type='text', required='' placeholder='First name')
|
|
.col-6
|
|
input.form-control(type='text', required='' placeholder='Last name')
|
|
.form-group
|
|
label.col-form-label Email Address
|
|
input.form-control(type='email', required='' placeholder='Test@gmail.com')
|
|
.form-group
|
|
label.col-form-label Password
|
|
.form-input.position-relative
|
|
input.form-control(type='password', name='login[password]', required='' placeholder="*********")
|
|
.show-hide
|
|
span.show
|
|
|
|
.form-group.mb-0
|
|
.checkbox.p-0
|
|
input#checkbox1(type='checkbox')
|
|
label.text-muted(for='checkbox1') Agree with
|
|
a.ms-2(href="#") Privacy Policy
|
|
button.btn.btn-primary.btn-block.w-100(type='submit') Create Account
|
|
h6.text-muted.mt-4.or Or signup with
|
|
.social.mt-4
|
|
.btn-showcase
|
|
a.btn.btn-light(href='https://www.linkedin.com/login' target='_blank')
|
|
i.txt-linkedin(data-feather="linkedin")
|
|
| LinkedIn
|
|
|
|
a.btn.btn-light(href='https://twitter.com/login?lang=en' target='_blank')
|
|
i.txt-twitter(data-feather="twitter")
|
|
| twitter
|
|
|
|
a.btn.btn-light(href='https://www.facebook.com/' target='_blank')
|
|
|
|
i.txt-fb(data-feather="facebook")
|
|
| facebook
|
|
p.mt-4.mb-0 Already have an account?
|
|
a.ms-2(href="login.html") Sign in
|
|
|
|
|
|
include ../../components/footer-files
|