Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
55803d0
Part 1 Set up
mdazharaw Apr 16, 2020
33c6f44
Add view artists page
mdazharaw Apr 16, 2020
7cf2c5f
New Artist page added
mdazharaw Apr 16, 2020
8f0bfbb
Added new artist post request
mdazharaw Apr 16, 2020
8ee0476
Added individual artist page
mdazharaw Apr 16, 2020
f374bd0
Edit artist page added
mdazharaw Apr 17, 2020
10a8a4c
Update artist function added
mdazharaw Apr 17, 2020
155dfb3
Delete function added
mdazharaw Apr 19, 2020
8dd3189
Added css for index
mdazharaw Apr 19, 2020
f125cc1
Working ui for artist functions
mdazharaw Apr 19, 2020
49c6361
Add ignored files
mdazharaw Apr 19, 2020
4bfe41e
Add new song function added
mdazharaw Apr 19, 2020
5d634c3
Add update and delete song
mdazharaw Apr 19, 2020
4f4a663
Updated nav bar for artists
mdazharaw Apr 19, 2020
c0b32fb
Minimal playlist feature added
mdazharaw Apr 20, 2020
e8f6c86
Removed editing of song from playlist screen
mdazharaw Apr 20, 2020
3d86621
Removed instances of artist id reassignment
mdazharaw Apr 20, 2020
43a67b4
Fixed navbar toggle
mdazharaw Apr 20, 2020
140af78
Merge pull request #1 from mdazharaw/Id-fixing
mdazharaw Apr 20, 2020
8e70762
Added visit counter footer
mdazharaw Apr 20, 2020
c5e9851
Visit counter function added
mdazharaw Apr 21, 2020
d151018
Merge pull request #2 from mdazharaw/playlist-fix
mdazharaw Apr 21, 2020
887d368
Login and sign up page form added
mdazharaw Apr 21, 2020
5f1b0e7
Basic login function added
mdazharaw Apr 22, 2020
6ce0fb2
Added logout button
mdazharaw Apr 22, 2020
71cfe67
Add password hiding
mdazharaw Apr 22, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,6 @@ Icon
Network Trash Folder
Temporary Items
.apdisk
img_26483.png
style.css
public/images/default.png
20 changes: 15 additions & 5 deletions artist_data.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
INSERT INTO artists(name, photo_url, nationality) VALUES('Yeah Yeah Yeahs', 'http://www.athousandguitars.com/wp-content/uploads/2013/04/yeah-yeah-yeahs.jpg', 'USA');
INSERT INTO artists(name, photo_url, nationality) VALUES('Nosaj Thing', 'http://wertn.com/wp-content/uploads/2012/04/Nosaj-Thing_Mondrian_CL_High-3487.jpg', 'USA');
INSERT INTO artists(name, photo_url, nationality) VALUES('Norah Jones', 'http://entertainmentrealm.files.wordpress.com/2012/05/norahjones1.jpg', 'USA');
INSERT INTO artists(name, photo_url, nationality) VALUES('Lykke Li', 'http://www.chartattack.com/wp-content/uploads/2012/07/lykke-li-newmain1-photo-by-daniel-jackson.jpg', 'Sweeden');
INSERT INTO artists(name, photo_url, nationality) VALUES('Kendrick Lamar', 'http://www.xxlmag.com/wp-content/uploads/2013/06/kendricklamar_001-1600.jpg', 'USA');
INSERT INTO artists
(name, photo_url, nationality)
VALUES('Yeah Yeah Yeahs', 'https://www.nme.com/wp-content/uploads/2018/05/Yeah-Yeah-Yeahs-696x442.jpg', 'USA');
INSERT INTO artists
(name, photo_url, nationality)
VALUES('Nosaj Thing', 'http://wertn.com/wp-content/uploads/2012/04/Nosaj-Thing_Mondrian_CL_High-3487.jpg', 'USA');
INSERT INTO artists
(name, photo_url, nationality)
VALUES('Norah Jones', 'http://entertainmentrealm.files.wordpress.com/2012/05/norahjones1.jpg', 'USA');
INSERT INTO artists
(name, photo_url, nationality)
VALUES('Lykke Li', 'https://www.nme.com/wp-content/uploads/2016/09/2014WarChild_TomOldham_LykkeLi01f2271014-696x464.jpg', 'Sweeden');
INSERT INTO artists
(name, photo_url, nationality)
VALUES('Kendrick Lamar', 'https://www.grammy.com/sites/com/files/styles/image_landscape_hero/public/muzooka/Kendrick%2BLamar/Kendrick%2520Lamar_16_9_1581551985.jpg?itok=tTIQWnQS', 'USA');
Loading