An open API service indexing awesome lists of open source software.

https://github.com/gwendall/meteor-password-access

Protect the access to an app with a password
https://github.com/gwendall/meteor-password-access

Last synced: 2 months ago
JSON representation

Protect the access to an app with a password

Awesome Lists containing this project

README

        

```diff
- NOTE: This package is not maintained anymore.
- If you want to help, please reach out to [email protected]
```

Meteor Password Access
================

Protects access to an app by hiding all templates before the password is correct. Depends on ```iron:router```.

Installation
------------

``` sh
meteor add gwendall:password-access
```

Methods
-------

***Access.config (client)***

``` javascript
Access.config({
password: 'xxxx', // Password to enter
title: 'My super app', // Title of the password form
welcome: 'You shall get in. Congratulations.', // Message to display on enter
ttl: 10000 // Delay before enter
});
```