Skip to content

Commit ed005ae

Browse files
committed
second commit
1 parent a4e3915 commit ed005ae

File tree

96 files changed

+11940
-149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+11940
-149
lines changed

Student_Monitoring_System/urls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
from django.urls import path, include
1818
from . import views
1919

20+
admin.site.site_header = 'Student Monitoring System Administration'
21+
2022
urlpatterns = [
2123
path('admin/', admin.site.urls),
2224
path('', views.home, name="home"),

accounts/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def register(request):
1515
first_name = request.POST['first_name']
1616
last_name = request.POST['last_name']
1717
email = request.POST['email']
18-
password = request.POST['password']
18+
password = request.POST['pass']
1919
username = request.POST['username']
2020
if User.objects.filter(email=email).exists():
2121
messages.info(request, 'Email Taken')

db.sqlite3

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)