Commit 033f9629918e5eaae0d554cc0937d49d50214f6d
1 parent
2cfb4bd0e1
Exists in
master
Update README with additional files, remove Not Added Yet
title from Authentication block, add Validation block.
Showing
1 changed file
with
5 additions
and
1 deletions
Show diff stats
README.md
... | ... | @@ -77,6 +77,7 @@ Base comes with a pre-defined file structure common to all projects along with s |
77 | 77 | |
78 | 78 | ---------/send |
79 | 79 | ---------/templates |
80 | +------------reset-password.coffee | |
80 | 81 | ------/publications |
81 | 82 | ``` |
82 | 83 | |
... | ... | @@ -99,12 +100,15 @@ A collection of pre-defined routes and templates for common functionality (see A |
99 | 100 | - /reset-password (Public) |
100 | 101 | ``` |
101 | 102 | |
102 | -###### Authentication (Not Included Yet, Just Documenting) | |
103 | +###### Authentication | |
103 | 104 | A complete authentication pattern complete with: |
104 | 105 | |
105 | 106 | - Signup (at /signup) |
106 | 107 | - Login (at /login) |
107 | 108 | - Password Recovery (at /recover-password and /reset-password) |
108 | 109 | |
110 | +###### Validation (Not Added Yet) | |
111 | +Validation via [jQuery Validation](http://jqueryvalidation.org). This applies to all of the public templates: login, signup, recover password, and reset password. | |
112 | + | |
109 | 113 | ###### Automatic Admin User Creation |
110 | 114 | When developing, having a handful of user accounts to test your application with can come in handy. Base comes with an automated account generation script located in `server/admin/startup.coffee` that creates accounts based on an array of specified users. **Note: by default this creates one Admin user on server startup, so make sure to customize or remove this user so the public can't access your app**. | ... | ... |