Skip to content

Commit

Permalink
Add github link to website
Browse files Browse the repository at this point in the history
  • Loading branch information
flo committed Apr 23, 2018
1 parent 420eccc commit 998d927
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 53 deletions.
30 changes: 0 additions & 30 deletions android/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions android/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions server/lib/no_pass_web/templates/layout/app.html.eex
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta name="description" content="distributed password manager without a master password">
<meta name="author" content="Florian Zinggeler">

<title>NoKey</title>

Expand All @@ -15,10 +15,10 @@

<body style="background: rgb(255,241,222);">
<div class="container">
<div class="masthead"><h3>NoKey</h3></div>
<div class="page-header"><h1>NoKey</h1></div>
<%= render @view_module, @view_template, assigns %>
<footer class="footer">
<p>TODO: github link</p>
<a href="https://github.com/Zinggi/NoKey">Github</a>
</footer>
</div>
</body>
Expand Down
33 changes: 17 additions & 16 deletions server/lib/no_pass_web/templates/page/index.html.eex
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<h2>Welcome to NoKey!</h2>
<p class="lead">
NoKey is a distributed password manager without a master password.
<i>TODO</i>
</p>
<h3>Try the alpha version</h3>
<p>
You can try out NoKey right now, but it's in an early alpha phase.
This means that there will be bugs and things that don't work, but you can still give it a try.
</p>
<p>
<b>Don't rely on NoKey just yet!</b> There will probably be backwards incompatible changes before a proper release,
which would mean that if you would already rely on it now, you would lose your passwords once it's out of alpha.
</p>
<p>
You can report issues <a href="https://github.com/Zinggi/NoKey/issues">here</a>.
</p>
<div class="row">
<h2>Welcome to NoKey!</h2>
<p class="lead">
NoKey is a distributed password manager without a master password.
<i>TODO</i>
</p>
</div>
<div class="row">
<h3>Try the alpha version</h3>
<p>
You can try out NoKey right now, but it's in an early alpha phase.
This means that there will be bugs and things that don't work, but you can still give it a try.
</p>
<p>
<b>Don't rely on NoKey just yet!</b> There will probably be backwards incompatible changes before a proper release,
which would mean that if you would already rely on it now, you would lose your passwords once it's out of alpha.
</p>
<div class="col-lg-4">
<h4>Web app</h4>
<p>
Expand Down
2 changes: 1 addition & 1 deletion web_extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ setup(Elm.MainBackground.fullscreen, (app) => {
width: 600,
height: 300,
type: 'popup', // TODO: test difference between:"normal" "popup" ("panel": deprecated on chrome) ("detached_panel" doesn't exist on chrome)
allowScriptsToClose: true // TODO: make window close on esc and save and forget button: window.close
allowScriptsToClose: true
}).then((win) => {
win.document.body.style = "width: 600; height: 300;";
win.document.documentElement.style = "width: 600; height: 300;";
Expand Down

0 comments on commit 998d927

Please sign in to comment.