Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 982 Bytes

url_endpoints.md

File metadata and controls

22 lines (21 loc) · 982 Bytes

This file consists of the list of URLS in the project

1. URL (Base/urls.py) : "/"
VIEW (Base/views.py) : index
This is the home page . This url will return 2 different pages depending on whether the user is logged in or not.
2. URL (Base/urls.py) : "/sign_up/"
VIEW (Base/views.py) : sign_up
This is the registration page for the team.
3. URL (Base/urls.py) : "/sign_in/"
VIEW (Base/views.py) : sign_in
The team will enter their credentials on this page and shall be able to login.
4. URL (Base/urls.py) : "/sign_out/"
VIEW (Base/views.py) : sign_out
The user shall be logged out on making a get request to this url.
5. URL (Base/urls.py) : "/leaderboard/"
VIEW (Base/views.py) : leaderboard
The team will be able to see the top 10 players on visiting this url.