Update urls.py

This update involves adding a URL pattern for the new Alliance page in the Django project.

Raw Python Code:

from django.urls import path
from myapp import views

urlpatterns = [
    path('', views.home, name='home'),  # Root URL maps to home page
    path('alliance/', views.alliance, name='alliance'),  # New URL for Alliance page
]