How do i create a web page that allows for both admin and user logins' but different levels of privileges are accorded to both, | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do i create a web page that allows for both admin and user logins' but different levels of privileges are accorded to both,

25th Jan 2020, 8:00 AM
Patrick Johns
Patrick Johns  - avatar
3 Answers
+ 5
You need to set up server side database which stores user info including their login token and privileges level. An easy way would be: Google Firebase Authentication https://firebase.google.com/docs/auth
25th Jan 2020, 8:27 AM
Gordon
Gordon - avatar
+ 3
Welcome! if you need such a page in the near future, maybe it makes sense to look at the ready-made solution? since it will take a long time to create such a page when you are just at the start your education
25th Jan 2020, 8:41 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 2
As Gordon has stated you need a table in your database. Let's call it *access_level* and assign 2 levels (admin, users.) 1.Admin has the ability to delete/add/deactivate a user. 3. Users can...? use the web-app. Then use a conditional check on the login page to check the access level. ---- Usually you'd set the first Registration to be of the Superadmin How? Well, you do a check, since the first registration has an id of 1, you use that to set the access level of a superadmin. I'd advise you to only have one super admin and add moderators, if need be that way you have powerful *PRIVILEGES*
26th Jan 2020, 8:11 PM
Cholasni Anaim
Cholasni Anaim - avatar