diff --git a/aula/schema_ins.sql b/aula/schema_ins.sql index 8c886eb..ab87c46 100644 --- a/aula/schema_ins.sql +++ b/aula/schema_ins.sql @@ -3,10 +3,10 @@ TRUNCATE users, groups, threads, messages, posts, users_in_groups; INSERT INTO public.users(cpr_num, first_name, last_name, password, role) VALUES (5000, 'Gordon', 'Freeman', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'teacher'), (5001, 'Rachel', 'Green', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'parent'), - (5002,'Joey', 'Trib', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'student'), - (5003,'Chandler', 'Bing', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'student'), + (5002,'Joey', 'Trib', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'parent'), + (5003,'Chandler', 'Bing', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'parent'), (5004,'Phoebe', 'Buffay', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'parent'), - (5005,'Ross', 'Geller', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'student'); + (5005,'Ross', 'Geller', '$2b$12$KFkp1IEMGT4QrWwjPGhE3ejOv6Z3pYhx/S4qOoFbanR2sMiZqgeJO', 'parent'); INSERT INTO public.groups(group_id, name, mandatory) VALUES (1000, 'fodbold', TRUE), diff --git a/aula/templates/login.html b/aula/templates/login.html index 912cc2d..68088ae 100644 --- a/aula/templates/login.html +++ b/aula/templates/login.html @@ -49,11 +49,11 @@ {% block sidebar %}
Forældre
-Brugernavne: 5000, 5001, 5002 eller 5003
-Kodeord: UIS
Lærer
-Brugernavne: 5004 eller 5005
+Brugernavne: 5000
+Kodeord: UIS
+Forældre
+Brugernavne: 5001-5005
Kodeord: UIS
{% endblock sidebar %}