-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconsts.js
14 lines (14 loc) · 951 Bytes
/
consts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
exports.url_student_login_submit = 'https://vtop.vit.ac.in/student/stud_login_submit.asp';
exports.url_student_login_home = 'https://vtop.vit.ac.in/student/stud_home.asp';
exports.url_parent_login_submit = 'https://vtop.vit.ac.in/parent/parent_login_submit.asp';
exports.url_parent_login_home = 'https://vtop.vit.ac.in/parent/home.asp';
exports.url_student_captcha_link = 'https://vtop.vit.ac.in/student/captcha.asp';
exports.url_parent_captcha_link = 'https://vtop.vit.ac.in/parent/captcha.asp';
exports.captcha_connection_error_code = 300;
exports.captcha_connection_error_message = 'Captcha could not be downloaded';
exports.captcha_parse_error_code = 400;
exports.captcha_parse_error_message = 'Captcha could not be parsed.';
exports.home_blocked_code = 500;
exports.home_blocked_message = 'Your Student Login seems to have been blocked.';
exports.invalid_creds_code = 600;
exports.invalid_creds_message = 'Wrong Registration Number or Password';