generated from muhtadeetaron/nextjs-template
24 lines
376 B
TypeScript
24 lines
376 B
TypeScript
export interface UserData {
|
|
name: string;
|
|
institution: string;
|
|
sscRoll: string;
|
|
hscRoll: string;
|
|
email: string;
|
|
phone: string;
|
|
}
|
|
|
|
export interface RegisterForm {
|
|
name: string;
|
|
institution: string;
|
|
sscRoll: string;
|
|
hscRoll: string;
|
|
email: string;
|
|
phone: string;
|
|
password: string;
|
|
}
|
|
|
|
export interface LoginForm {
|
|
email: string;
|
|
password: string;
|
|
}
|