Added functional registration

This commit is contained in:
Keannu Christian Bernasol 2023-07-03 21:22:31 +08:00
parent dfc20753b3
commit 26b3db25f0
23 changed files with 679 additions and 57 deletions

View file

@ -1,5 +1,9 @@
export interface IconProps {
size: number;
}
export interface ResponsiveIconProps {
size: number;
color: string;
}
@ -28,6 +32,9 @@ export interface RegistrationParams {
email: string;
username: string;
password: string;
first_name: string;
last_name: string;
student_id_number: string;
}
export interface LoginParams {