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.
 
 
 
 
 
 

184 lines
6.0 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>LessPass</title>
  6. <meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  8. <link rel="stylesheet" href="dist/lesspass.css">
  9. <style>
  10. html, body {
  11. height: 100%;
  12. width: 100%;
  13. }
  14. body {
  15. background: #008ed6 fixed top;
  16. background-size: cover;
  17. margin: 0;
  18. }
  19. #navbar__logo {
  20. height: 2em;
  21. }
  22. .white-link {
  23. color: white;
  24. }
  25. .white-link:hover, .white-link:focus, .white-link:active {
  26. text-decoration: none;
  27. color: white;
  28. }
  29. .jumbotron {
  30. background-color: transparent;
  31. padding-left: 0;
  32. padding-right: 0;
  33. }
  34. #hero-text {
  35. color: #ffffff;
  36. padding-top: 6em;
  37. }
  38. @media (max-width: 544px) {
  39. #hero__password-generator-block {
  40. padding: 0;
  41. }
  42. .jumbotron {
  43. padding: 0;
  44. }
  45. }
  46. .feature-image {
  47. width: 64px;
  48. }
  49. * {
  50. border-radius: 0 !important;
  51. }
  52. .white{
  53. color:white;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div class="container p-l-0 p-r-0 p-y-2 hidden-sm-down">
  59. <div class="col-xs-6">
  60. <a class="nav-link white-link" href="/">
  61. <img src="dist/logo-white.png" alt="LessPass" id="navbar__logo">
  62. </a>
  63. </div>
  64. <div class="col-xs-6 text-xs-right">
  65. <nav class="nav nav-inline pull-sm-right" style="line-height: 2em">
  66. <a class="nav-link white-link"
  67. href="https://addons.mozilla.org/en-US/firefox/addon/lesspass/">
  68. <i class="fa fa-firefox" aria-hidden="true"></i> Firefox Extension
  69. </a>
  70. <a class="nav-link white-link"
  71. href="https://chrome.google.com/webstore/detail/lesspass/lcmbpoclaodbgkbjafnkbbinogcbnjih">
  72. <i class="fa fa-chrome" aria-hidden="true"></i> Chrome Extension
  73. </a>
  74. </nav>
  75. </div>
  76. </div>
  77. <div class="container">
  78. <div class="jumbotron">
  79. <div class="row">
  80. <div id="hero__password-generator-block" class="col-lg-6 push-lg-6">
  81. <div id="lesspass"></div>
  82. </div>
  83. <div id="hero-text" class="col-lg-6 pull-lg-6">
  84. <h1 class="display-5">Next-Gen Open Source Password Manager</h1>
  85. <p class="lead">
  86. Stop wasting time synchronize your encrypted vault.
  87. Remember one master password to access your passwords, anywhere, anytime.
  88. No sync needed.
  89. </p>
  90. <p class="lead">
  91. <button class="btn btn-secondary">How it works ?</button>
  92. </p>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. <div class="container white">
  98. <div class="row">
  99. <div class="col-md-6 col-lg-3 m-b-3">
  100. <div class="media">
  101. <div class="media-left">
  102. <img class="media-object feature-image" src="dist/responsive.png"
  103. alt="Available far and wide">
  104. </div>
  105. <div class="media-body">
  106. <h4 class="media-heading">Available everywhere</h4>
  107. <p>
  108. LessPass is a web application and works on all devices
  109. (computer, smartphone, tablet and your smartTV)
  110. </p>
  111. </div>
  112. </div>
  113. </div>
  114. <div class="col-md-6 col-lg-3 m-b-3">
  115. <div class="media">
  116. <div class="media-left">
  117. <img class="media-object feature-image" src="dist/no-cloud.png"
  118. alt="No Cloud">
  119. </div>
  120. <div class="media-body">
  121. <h4 class="media-heading">No storage</h4>
  122. <p>
  123. LessPass regenerates your passwords when you need them. No cloud storage is required
  124. </p>
  125. </div>
  126. </div>
  127. </div>
  128. <div class="clearfix hidden-lg-up"></div>
  129. <div class="col-md-6 col-lg-3 m-b-3">
  130. <div class="media">
  131. <a class="media-left white-link" href="https://github.com/lesspass/lesspass/">
  132. <img class="media-object feature-image" src="dist/open-source.png"
  133. alt="Open Source">
  134. </a>
  135. <div class="media-body">
  136. <h4 class="media-heading">Open Source</h4>
  137. <p>
  138. LessPass is <strong>open-source</strong>. So its security can be audited.
  139. Source code is available on
  140. <a class="white-link" href="https://github.com/lesspass/lesspass/">Github</a>
  141. </p>
  142. </div>
  143. </div>
  144. </div>
  145. <div class="col-md-6 col-lg-3 m-b-3">
  146. <div class="media">
  147. <div class="media-left">
  148. <img class="media-object feature-image" src="dist/free.png"
  149. alt="Free">
  150. </div>
  151. <div class="media-body">
  152. <h4 class="media-heading">Free</h4>
  153. <p>
  154. LessPass is free<br>and always will be
  155. </p>
  156. </div>
  157. </div>
  158. </div>
  159. </div>
  160. </div>
  161. <div class="container text-xs-center text-sm-left white m-y-3">
  162. <div class="row">
  163. <div class="col-xs-12">
  164. <small>
  165. Copyright LessPass <br>
  166. Created by <a class="white-link" href="https://twitter.com/guillaume20100">Guillaume Vincent</a>
  167. </small>
  168. </div>
  169. </div>
  170. </div>
  171. <script src="dist/lesspass.js"></script>
  172. </body>
  173. </html>