diff --git a/src/pug/includes/navbar.pug b/src/pug/includes/navbar.pug index 18eb41e..0891b9d 100644 --- a/src/pug/includes/navbar.pug +++ b/src/pug/includes/navbar.pug @@ -15,6 +15,10 @@ nav.navbar.navbar-expand-lg.navbar-dark.bg-dark a.nav-link(href='pricing.html') Pricing li.nav-item a.nav-link(href='faq.html') FAQ + li.nav-item + a.nav-link(href='login.html') Login + li.nav-item + a.nav-link(href='install.html') Install li.nav-item.dropdown a#navbarDropdownBlog.nav-link.dropdown-toggle(href='#', role='button', data-bs-toggle='dropdown', aria-expanded='false') | Blog diff --git a/src/pug/login.pug b/src/pug/login.pug new file mode 100644 index 0000000..2ae78f3 --- /dev/null +++ b/src/pug/login.pug @@ -0,0 +1,57 @@ +doctype html +html(lang='en') + +head + + meta(charset='utf-8') + meta(name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no') + meta(name='description' content='') + meta(name='author' content='') + + title Halaman Instal + + // Favicon + link(rel='icon' type='image/x-icon' href='assets/favicon.ico') + + include includes/css.pug + +body(style='background-image: url("https://picsum.photos/id/667/600/400.webp");background-size: cover;background-repeat: no-repeat') + main.flex-shrink-0 + + // Page content + section + .container.px-5 + .row + .col-md-6.offset-md-3 + .d-flex + .mb-5.w-100 + .text-center.my-3 + + + + + .card + .card-body + .lead + | Selamat datang! + br + | Silakan masukkan nama pengguna dan kata sandi untuk mengelola Sistem Informasi Desa. + + hr + + form#setup + + .mb-3 + label.form-label(for='username') Nama Pengguna + input.form-control#username(placeholder='Nama Pengguna') + .mb-3 + label.form-label(for='password') Kata Sandi + input.form-control#password(placeholder='Kata Sandi') + + .mb-3 + button.btn.btn-outline-primary Masuk + + +include includes/scripts.pug