diff --git a/main/urls.py b/main/urls.py index 22af622a..e7a4affa 100644 --- a/main/urls.py +++ b/main/urls.py @@ -4,7 +4,7 @@ urlpatterns = [ path("", include("home.urls")), path("admin/", admin.site.urls), - path("accounts", include("allauth.urls")), + path("accounts/", include("allauth.urls")), path("profile/", include("profiles.urls")), path("hackathon/", include(("hackathon.urls", "hackathon"), namespace='hackathon')), diff --git a/profiles/templates/profiles/profile.html b/profiles/templates/profiles/profile.html index 09d5f403..4e6faf32 100644 --- a/profiles/templates/profiles/profile.html +++ b/profiles/templates/profiles/profile.html @@ -3,7 +3,39 @@ {% block content %} - - TEST PROFILE PAGE +

Profile Page

+

You are logged in as:

+ + +
+
+ +
+

Username:

+

{{ user.username }}

+
+ +
+

Email Address:

+

{{ user.email }}

+
+ +
+ +
+ +
+

First name:

+

{{ user.first_name }}

+
+ +
+

Last name:

+

{{ user.last_name }}

+
+ +
+ +
{% endblock %} diff --git a/templates/base.html b/templates/base.html index 1068841d..a49520a4 100644 --- a/templates/base.html +++ b/templates/base.html @@ -37,8 +37,6 @@ {% include "includes/footer.html" %} - - @@ -52,4 +50,6 @@ {% endblock %} + + diff --git a/templates/includes/navbar.html b/templates/includes/navbar.html index 21f6c94c..09c94c2c 100644 --- a/templates/includes/navbar.html +++ b/templates/includes/navbar.html @@ -31,7 +31,7 @@ Register Login - My Profile + My Profile Logout