generated from muhtadeetaron/nextjs-template
28 lines
515 B
TypeScript
28 lines
515 B
TypeScript
export interface UserData {
|
|
name: string;
|
|
institution: string;
|
|
sscRoll: string;
|
|
hscRoll: string;
|
|
email: string;
|
|
phone: string;
|
|
}
|
|
|
|
export interface RegisterForm {
|
|
full_name: string;
|
|
username: string;
|
|
email: string;
|
|
password: string;
|
|
phone_number: string;
|
|
ssc_roll: number;
|
|
ssc_board: string;
|
|
hsc_roll: number;
|
|
hsc_board: string;
|
|
college: string;
|
|
preparation_unit: "Science" | "Arts" | "Commerce" | string;
|
|
}
|
|
|
|
export interface LoginForm {
|
|
identifier: string;
|
|
password: string;
|
|
}
|