login.php 1.6 KB

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>CCLD Lidar Login</title>
  5. <meta charset="utf-8" />
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
  7. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto" />
  8. <link rel="stylesheet" type="text/css" href="/css/default.css" />
  9. <link rel="stylesheet" type="text/css" href="/css/<?=$defaultStylesheet?>" />
  10. <link rel="shortcut icon" href="daktylos.png" type="image/png" />
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  12. <meta name="author" content="Justin Gilman" />
  13. <meta name="description" content="The login page for viewing Lidar data" />
  14. <meta name="robots" content="none" />
  15. </head>
  16. <body>
  17. <header id="header"><a href="//<?=$currentClient['subdomain']?>.<?=ROOT_DOMAIN?>/"><img src="/images/<?=$currentClient['logo']?>" /></a><h1><?=$currentClient['display_name']?></h1></header>
  18. <div id="header-spacer"></div>
  19. <div id="login-window">
  20. <div id="message" style="visibility:hidden;"></div>
  21. <div class="row"><label for="username">Username</label> <input id="username" type="username" name="username" placeholder="username or email" /></div>
  22. <div class="row"><label for="password">Password</label> <input id="password" type="password" name="password" placeholder="password" /></div>
  23. <div class="row right-aligned"><button id="login" type="submit" class="button">Login</button></div>
  24. </div>
  25. <script type="text/javascript" src="/js/ajax.js?v=<?=CACHEBUST?>"></script>
  26. <script type="text/javascript" src="/js/login.js?v=<?=CACHEBUST?>"></script>
  27. </body>
  28. </html>