This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <button id="add">Add Addresses</button> | |
| <div id="addresses"></div> |
| /** | |
| * Password validation RegEx for JavaScript | |
| * | |
| * Passwords must be | |
| * - At least 8 characters long, max length anything | |
| * - Include at least 1 lowercase letter | |
| * - 1 capital letter | |
| * - 1 number | |
| * - 1 special character => !@#$%^&* | |
| * |