-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c33a28
commit 8316f10
Showing
12 changed files
with
89 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -319,7 +319,7 @@ html { | |
} | ||
|
||
.highlight{ | ||
background-color: #FFA; | ||
background-color: #FFC; | ||
color: black; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
var bcrypt = require('bcrypt'); | ||
|
||
function toHash(password, cb){ | ||
bcrypt.gen_salt(10, function(err, salt) { | ||
if(err) return cb(err); | ||
bcrypt.encrypt(password, salt, cb); | ||
}); | ||
} | ||
|
||
function check(password, hash, cb){ | ||
console.log(password); | ||
console.log(hash); | ||
bcrypt.compare(password, hash, cb); | ||
} | ||
|
||
module.exports = { | ||
toHash: toHash, | ||
check: check | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2598,6 +2598,6 @@ html { | |
color: black; | ||
} | ||
.highlight { | ||
background-color: #FFA; | ||
background-color: #FFC; | ||
color: black; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,8 +51,8 @@ | |
%div(style="padding:0 0px") | ||
%h2 Have more than 50 servers? | ||
%p | ||
%a(href="mailto:custom@dxdt.io")> Email | ||
or call us at (877) 250-4337 for volume discounts. | ||
We offer | ||
%a(href="mailto:custom@dxdt.io")> volume discounts. | ||
.span8 | ||
%form(method="POST" action="/signup" autocomplete="off") | ||
%fieldset | ||
|
@@ -72,11 +72,9 @@ | |
.row | ||
.grayblock | ||
%h3 If you have any questions, please <a href="mailto:[email protected]">email us</a> or call (877) 250-4337 | ||
.vspace | ||
.vspace2 | ||
.span16 | ||
.row | ||
.span16 | ||
%h2 FAQ | ||
.span8 | ||
%h3 How does the 30-day trial work? | ||
Sign up and start monitoring servers. A couple weeks before the end of your trial, we'll politely ask you to enter your billing information and you will be billed on the day after your trial ends for the following month. If for some reason we aren't a good fit, then we'll put your account on hold until further notice. If you get busy and forget to put in all your info, we have a grace period so you won't lose any data. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters