You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.6 KiB

8 years ago
  1. doctype html
  2. html
  3. head
  4. meta(http-equiv='X-UA-Compatible', content='IE=edge')
  5. meta(charset='UTF-8')
  6. meta(name='viewport', content='width=device-width, initial-scale=1')
  7. meta(name='theme-color', content='#009688')
  8. meta(name='msapplication-TileColor', content='#009688')
  9. meta(name='msapplication-TileImage', content='/favicons/ms-icon-144x144.png')
  10. title= appconfig.title
  11. // Favicon
  12. each favsize in [57, 60, 72, 76, 114, 120, 144, 152, 180]
  13. link(rel='apple-touch-icon', sizes=favsize + 'x' + favsize, href='/favicons/apple-icon-' + favsize + 'x' + favsize + '.png')
  14. link(rel='icon', type='image/png', sizes='192x192', href='/favicons/android-icon-192x192.png')
  15. each favsize in [32, 96, 16]
  16. link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize, href='/favicons/favicon-' + favsize + 'x' + favsize + '.png')
  17. link(rel='manifest', href='/manifest.json')
  18. // CSS
  19. link(type='text/css', rel='stylesheet', href='/css/libs.css')
  20. link(type='text/css', rel='stylesheet', href='/css/login.css')
  21. // JS
  22. script(type='text/javascript', src='/js/libs.js')
  23. script(type='text/javascript', src='/js/login.js')
  24. body
  25. #bg
  26. each bg in [1, 2, 3]
  27. div(style="background-image:url(/images/bg_" + bg + ".jpg);")
  28. #root
  29. h1= appconfig.title
  30. h2 Login required
  31. input#login-user(type='text', placeholder='Email address')
  32. input#login-pass(type='password', placeholder='Password')
  33. button Log In
  34. #copyright
  35. = t('footer.poweredby') + ' '
  36. a.icon(href='https://github.com/Requarks/wiki')
  37. i.fa.fa-github
  38. a(href='https://github.com/Requarks/wiki') Requarks Wiki