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
- Host: GitHub
- URL: https://github.com/gwendall/meteor-password-access
- Owner: gwendall
- Created: 2015-07-09T09:41:49.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-07T14:23:01.000Z (almost 8 years ago)
- Last Synced: 2025-04-04T22:46:59.306Z (2 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
});
```