├── js
├── index.html
├── includes
│ ├── newNote.js
│ ├── notes.js
│ ├── dashboard.js
│ ├── profile.js
│ ├── viewNote.js
│ ├── newTask.js
│ ├── viewTask.js
│ └── sign-in.js
├── custom.js
├── html5shiv.min.js
├── respond.min.js
└── meowsa.min.js
├── css
├── index.html
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ └── fontawesome-webfont.woff2
├── meowsa.min.css
├── sign-in.css
├── datetimepicker.css
└── custom.css
├── data
├── index.html
├── notes
│ ├── index.html
│ └── m1guelpiedrafita-13045301.txt.lock
└── tasks
│ └── index.html
├── images
├── index.html
└── sorts
│ ├── sort_asc.png
│ ├── sort_both.png
│ ├── sort_desc.png
│ ├── sort_asc_disabled.png
│ └── sort_desc_disabled.png
├── pages
├── index.html
├── newNote.php
├── newTask.php
├── notes.php
├── profile.php
├── viewNote.php
├── dashboard.php
└── viewTask.php
├── includes
├── index.html
├── footer.php
├── header.php
├── sessions.php
├── config.php
├── navigation.php
├── flatfile_utils.php
├── functions.php
└── flatfile.php
├── language
├── index.html
├── custom.php
└── english.php
├── .eslintignore
├── .csslintrc
├── .github
└── FUNDING.yml
├── .codeclimate.yml
├── ajax
├── notes_ajax.php
├── profile_ajax.php
├── tasks_ajax.php
├── viewnote_ajax.php
├── newnote_ajax.php
├── newtask_ajax.php
├── viewtask_ajax.php
└── signin_ajax.php
├── index.php
├── README.md
├── .eslintrc
├── sign-in.php
└── LICENSE
/js/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/css/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/data/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/images/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/data/notes/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/data/tasks/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/includes/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/language/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | **/*{.,-}min.js
2 |
--------------------------------------------------------------------------------
/data/notes/m1guelpiedrafita-13045301.txt.lock:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/css/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/css/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/images/sorts/sort_asc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/images/sorts/sort_asc.png
--------------------------------------------------------------------------------
/images/sorts/sort_both.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/images/sorts/sort_both.png
--------------------------------------------------------------------------------
/images/sorts/sort_desc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/images/sorts/sort_desc.png
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/css/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/css/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/css/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/images/sorts/sort_asc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/images/sorts/sort_asc_disabled.png
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/css/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/images/sorts/sort_desc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/m1guelpf/Tasks/HEAD/images/sorts/sort_desc_disabled.png
--------------------------------------------------------------------------------
/.csslintrc:
--------------------------------------------------------------------------------
1 | --exclude-exts=.min.css
2 | --ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes
3 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: m1guelpf
4 | patreon: m1guelpiedrafita
5 |
--------------------------------------------------------------------------------
/.codeclimate.yml:
--------------------------------------------------------------------------------
1 | ---
2 | engines:
3 | csslint:
4 | enabled: true
5 | duplication:
6 | enabled: true
7 | config:
8 | languages:
9 | - ruby
10 | - javascript
11 | - python
12 | - php
13 | eslint:
14 | enabled: true
15 | fixme:
16 | enabled: true
17 | phpmd:
18 | enabled: true
19 | ratings:
20 | paths:
21 | - "**.css"
22 | - "**.inc"
23 | - "**.js"
24 | - "**.jsx"
25 | - "**.module"
26 | - "**.php"
27 | - "**.py"
28 | - "**.rb"
29 | exclude_paths: []
30 |
--------------------------------------------------------------------------------
/includes/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | ';
5 | } ?>
6 | ';
8 | } ?>
9 |
10 | ';
12 | } ?>
13 |
14 |
15 |