- ID de l'analyse :
- 28a7e562-4535-4557-a31b-8ed1afbefa23Terminée
- URL soumise :
- https://online.udvash-unmesh.com/Redirigé
- Fin du rapport :
Liens : 10 trouvé(s)
Liens sortants identifiés à partir de la page
Lien | texte |
---|---|
https://udvash-unmesh.com/AboutUs | About Us |
https://udvash-unmesh.com/privacy-policy | Privacy Policy |
https://udvash-unmesh.com/terms-conditions | Terms& Conditions |
https://udvash-unmesh.com/Faq | FAQs |
https://udvash-unmesh.com/ContactUs | Contact Us |
https://udvash.com | Udvash |
https://unmesh.com | Unmesh |
https://www.youtube.com/c/UdvashUnmesh | |
https://www.instagram.com/udvash_unmesh/ | |
https://www.linkedin.com/in/udvashunmesh/ |
Variables JavaScript : 41 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
0 | object |
1 | object |
2 | object |
3 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
$ | function |
jQuery | function |
mobileCheck | function |
Messages de journal de console : 0 trouvé(s)
Messages consignés dans la console web
HTML
Le corps HTML de la page en données brutes
<!DOCTYPE html><html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="">
<meta name="keywords" content="Udvash,Unmesh,Online Education,Online Exam,Online Class,Online Admission">
<meta name="author" content="Udvash-Unmesh Shikkha Poribar">
<meta name="application-name" content="Udvash-Unmesh Online Portal">
<title>Student Login - Udvash Unmesh Online V-17.167.13</title>
<!-- ----------------------------------------------------------------
Fonts load from google
----------------------------------------------------------------- -->
<link rel="icon" href="/Content/UmsTheme/assets/images/favicon.png" sizes="32x32">
<link rel="icon" href="/Content/UmsTheme/assets/images/favicon.png" sizes="192x192">
<link rel="apple-touch-icon" href="/Content/UmsTheme/assets/images/favicon.png">
<meta name="msapplication-TileImage" content="/Content/UmsTheme/assets/images/favicon.png">
<!-- ----------------------------------------------------------------
Fonts load from google
----------------------------------------------------------------- -->
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,300&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- ----------------------------------------------------------------
Page Stylesheets
----------------------------------------------------------------- -->
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="/Content/UmsTheme/assets/lib/bootstrap/bootstrap.min.css">
<!-- Bootstrap -->
<!-- Fontawesome -->
<link rel="stylesheet" type="text/css" href="/Content/UmsTheme/assets/lib/fontawesome/css/all.min.css">
<!-- Skin -->
<link rel="stylesheet" type="text/css" href="/Content/UmsTheme/assets/css/skin-udvash.css?v=167.13">
<!-- Style -->
<link rel="stylesheet" type="text/css" href="/Content/UmsTheme/assets/css/style.css?v=167.13">
<!-- Custom -->
<link rel="stylesheet" type="text/css" href="/Content/UmsTheme/assets/css/custom.css?v=167.13">
<!-- jQuery -->
<script type="text/javascript" src="/Content/UmsTheme/assets/js/jquery.min.js"></script>
<script type="text/javascript">
//This block execute after every ajax call
//If the ajax call return login error then this
//function redirect the user to login page.
$(document).ajaxComplete(function (xhr, status) {
if (status.getResponseHeader("X-Responded-JSON") != null) {
var obj = jQuery.parseJSON(status.getResponseHeader("X-Responded-JSON"));
//console.log(obj.status);
//console.log(obj.headers['location']);
//console.log(obj.headers['location'].substr(0, obj.headers['location'].indexOf('?')));
if (obj.status == 401) {
//window.location.assign(obj.headers['location']);
window.location.assign(obj.headers['location'].substr(0, obj.headers['location'].indexOf('?')));
}
}
});
function mobileCheck(mobileNumber) {
mobileNumber = mobileNumber.replace(/\W+/g, "");
var chkVal = mobileNumber.match(/^(?:\+?88)?0?1[13-9]\d{8}$/);
if (chkVal != null) {
if (mobileNumber.length == 11) {
chkVal = '88' + chkVal;
}
else if (mobileNumber.length == 10) {
chkVal = '880' + chkVal;
}
var chkVal = mobileNumber.match(/^(?:\+?88)?01[13-9]\d{8}$/);
if (chkVal != null) {
if (mobileNumber.length == 11) {
chkVal = '88' + chkVal;
}
else if (mobileNumber.length == 10) {
chkVal = '880' + chkVal;
}
}
//alert(chkVal);
}
return chkVal;
}
function nickNameCheck(nickName) {
var chkVal = nickName.match(/^[a-zA-Z .-`]$/);
return chkVal;
}
//This function is used for remove other char without numeric for text field
function isNumber(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
if (!String.prototype.trim) {
String.prototype.trim = function () {
return this.replace(/^\s+|\s+$/g, '');
};
}
function showErrorMessageBelowCtrl(ctrlId, message, show) {
var divHtml = '<div style="color:red;" id="' + ctrlId + '_err_div" >' + message + '</div>';
if (show == true) {
$('#' + ctrlId).addClass("highlight");
$('#' + ctrlId).after(divHtml);
} else {
$('#' + ctrlId).removeClass("highlight");
$('#' + ctrlId + '_err_div').remove();
}
}
function validateTextField(controlId, errorMessage) {
$(document).on("input propertychange", "#" + controlId, function (event) {
var value = $("#" + controlId).val().trim();
if (value.length == 0) {
showErrorMessageBelowCtrl(controlId, "", false);
showErrorMessageBelowCtrl(controlId, errorMessage, true);
return false;
} else {
showErrorMessageBelowCtrl(controlId, "", false);
}
});
}
function validateDropDownField(controlId, targetId, errorMessage) {
$(document).on("change", "#" + controlId, function (event) {
var val = $("#" + targetId).val();
if (val.length == 0) {
//showErrorMessageBelowCtrl(controlId, "", false);
showErrorMessageBelowCtrl(controlId, errorMessage, true);
} else {
showErrorMessageBelowCtrl(controlId, "", false);
}
});
}
function validateDropDownField(controlId, errorMessage) {
$(document).on("change", "#" + controlId, function (event) {
var val = $("#" + controlId).val();
if (val.length == 0) {
showErrorMessageBelowCtrl(controlId, "", false);
showErrorMessageBelowCtrl(controlId, errorMessage, true);
} else {
showErrorMessageBelowCtrl(controlId, "", false);
}
});
}
function validateListField(controlId, errorMessage) {
$(document).on("change", "#" + controlId, function (event) {
var val = $("#" + controlId).val();
if (val == null || val.length == 0) {
showErrorMessageBelowCtrl(controlId, "", false);
showErrorMessageBelowCtrl(controlId, errorMessage, true);
} else {
showErrorMessageBelowCtrl(controlId, "", false);
}
});
}
function scrollToElement(selector) {
var s = $(selector);
if (s != undefined)
$(document.body).scrollTop($(selector).offset().top - 120);
}
$(document).ready(function () {
$("select").change(function () {
if ($(this).val() != "") {
$(this).parent().find(".field-validation-error-count").remove();
$(this).next('span').empty();
}
else {
//$(this).parent().find(".field-validation-error-count").remove();
$(this).parent().remove("span");
$(this).parent().append("<span class='text-danger field-validation-error' style='color:red'></span>");
}
});
$(document).on("input propertychange", ".numbersOnly", function (event) {
var valStr = $(this).val();
var id = $(this).attr("id");
var val = parseInt(valStr);
showErrorMessageBelowCtrl(id, "", false);
if (isNaN(val)) {
$(this).val("");
}
else if (val < 0) {
$(this).val("");
showErrorMessageBelowCtrl(id, "Please enter valid amount", true);
} else {
$(this).val(val);
}
});
});
</script>
<script>
//Disable Inspect Element
document.onkeydown = function (e) {
if (event.keyCode == 123) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) {
return false;
}
}
$(document).bind("contextmenu", function (e) {
e.preventDefault();
});
$(document).keydown(function (e) {
if (e.which === 123) {
return false;
}
});
</script>
<style>
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
</style>
<script async="" src="https://static.hotjar.com/c/hotjar-1908076.js?sv=6"></script><script async="" src="https://script.hotjar.com/modules.6f60e575cf8ad7cb10f7.js" charset="utf-8"></script></head>
<body class="uu-login-page" data-project-root="/">
<style>
.uu-has-sub-mobile-menu {
visibility: hidden;
}
li.for-mobile-view {
display: none !important;
}
.uu-header-wrapper .notification a span i {
font-size: 24px;
padding: 9px;
border-radius: 50%;
min-width: 41px;
margin: 0px 5px;
color: #fff;
background-color: #532356;
}
.uu-header-wrapper .notification a .badge {
width: 24px;
height: 24px;
border-radius: 50%;
background: red;
color: #fff;
font-size: 14px;
right: -3px;
top: -21px;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width:768px) {
.for-mobile-menu {
display: none !important;
}
li.for-mobile-view {
display: block !important;
}
.uu-has-sub-mobile-menu {
visibility: visible;
}
ul.uu-main-menu ul.uu-dropdown-menu li a {
white-space: pre-wrap;
}
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
div.uu-header-wrapper {
padding-block: 10px;
padding-right: 10px;
}
}
</style>
<div class="uu-header-wrapper">
<div class="container">
<div class="row align-items-center">
<div class="col-md-10 col-6 col-lg-2 logo-wrapper d-middle">
<div id="wrapper" class="d-none">
<div id="iconId" class="circle icon">
<span class="line top"></span>
<span class="line middle"></span>
<span class="line bottom"></span>
</div>
</div>
<div class="logo">
<a href="/">
<img class="uu-header-logo" src="/Content/Image/UdvashUnmeshOnlineCare.png">
</a>
</div>
</div><!-- end col -->
<div class="col-md-9 col-6 text-right uu-mobile-menu">
<ul class="uu-main-menu uuu-new-menu">
<li class="py-2">
<a href="#"></a>
</li>
</ul>
</div><!-- end col -->
<div class="col-md-2 col-6 col-lg-1 px-lg-0 px-1 text-right uu-mobile-right-menu">
<ul class="uu-main-menu">
<div class="uu-last-element">
</div>
</ul>
</div>
</div><!-- end row -->
</div><!-- end container -->
</div><!-- End Header Wrapper -->
<!-- Start Mian Section -->
<div class="uu-main">
<div class="container pt-5" style="min-height:40vh;">
<div class="customMessage text-center">
</div>
<div class="row align-items-center">
<div class="col-md-5 uu-register-form-pattern uu-has-pattern uu-pattern-top-bottom">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item rounded" src="https://www.youtube.com/embed/ujcun5ibKMQ?rel=0" title="YouTube video player" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="">
</iframe>
</div>
</div><!-- end col -->
<div class="gap-sm-30"></div>
<div class="col-md-7">
<div class="uu-login-form-wrapper uu-login-form custom-login-form">
<h2 class="uu-login-form-title text-uppercase">Student Login</h2>
<form action="/Account/Password" class="uu-login-form" id="loginForm" method="post" name="loginForm"><input name="__RequestVerificationToken" type="hidden" value="ru_gNIw_IV2NPj69TIJHKc0P4j4-BJYbgWEmVAKEPboTY52AgrpQ7YCnDbaRZ6zWXkJ8SegRm7pV1iDQsp88VDnmFc_DcI64JshLk9fC8cc1"> <span style="color:red;">
</span>
<input type="hidden" id="returnUrl" name="returnUrl" value="">
<div class="form-group">
<input autocomplete="off" class="form-control text-box single-line" data-val="true" data-val-required="The Registration Number field is required." id="RegistrationNumber" maxlength="20" name="RegistrationNumber" placeholder="Enter Your Registration Number" required="required" type="number" value="">
<span class="field-validation-valid" data-valmsg-for="RegistrationNumber" data-valmsg-replace="true"></span>
</div>
<div class="form-group uu-other-links">
<p><a href="/Account/ForgotRegistrationNumber" class="uu-resend" style="color: #322D8F;">Forgot Registration Number?</a>
</p></div>
<div class="form-group uu-form-action">
<button type="button" id="btnSubmit" class="uu-button-style-2">Next</button>
</div>
<div class="form-group uu-other-links uu-other-links-2">
<p class="mobileRegistration">
Don't have a Registration Number?<br><a href="/Registration?returnUrl=" class="uu-forgot-number" style="white-space:nowrap; margin-right:0px !important; ">Register Now.</a> It's Free.
</p>
<p class="desktopRegistration">
Don't have a Registration Number? <a href="/Registration?returnUrl=" class="uu-forgot-number" style="white-space:nowrap; margin-right:0px !important; ">Register Now.</a> It's Free.
</p>
</div>
</form> </div>
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</div><!-- End Mian Section -->
<style>
div.uu-footer-top {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
<!-- Start Footer Section -->
<footer>
<div class="container" style="max-width: 1200px !important;">
<div class="row uu-footer-top">
<div class="col-md-4 col-sm-6">
<img class="uu-footer-logo" src="/Content/Image/Udvash-Unmesh-Online-Care-Logo-White.png">
</div><!-- end col -->
<div class="col-md-2 col-sm-6">
<h4 class="text-white">Help</h4>
<ul class="uu-footer-menu">
<li>
<a href="https://udvash-unmesh.com/AboutUs" target="_blank">About Us</a>
</li>
<li>
<a href="https://udvash-unmesh.com/privacy-policy" target="_blank">Privacy Policy</a>
</li>
<li>
<a href="https://udvash-unmesh.com/terms-conditions" target="_blank">Terms & Conditions</a>
</li>
<li>
<a href="https://udvash-unmesh.com/Faq" target="_blank">FAQs</a>
</li>
<li>
<a href="https://udvash-unmesh.com/ContactUs" target="_blank">Contact Us</a>
</li>
</ul>
</div><!-- end col -->
<div class="col-md-2 col-sm-6">
<h4 class="text-white">Explore</h4>
<ul class="uu-footer-menu">
<li>
<a href="https://udvash.com" target="_blank">Udvash</a>
</li>
<li>
<a href="https://unmesh.com" target="_blank">Unmesh</a>
</li>
</ul>
</div><!-- end col -->
<div class="col-md-4 col-sm-6">
<h4 class="text-white">Get in Touch</h4>
<ul class="uu-footer-menu">
<li>
<p class="text-white mb-2">Address: Hossain Tower (5th Floor), 75, Green Road, Farmgate; Sher-e-Bangla Nagar PS; Dhaka-1205.</p>
</li>
<li>
<p class="mb-0"><a class="text-white mb-0" href="tel:09666775566">Helpline: 09666775566</a></p>
</li>
<li>
<p class="text-white mb-0">Email: <a class="text-white mb-0" href="mailto:[email protected]">[email protected]</a></p>
</li>
<li class="social-icons">
<div class="media form-inline">
<a href="https://www.youtube.com/c/UdvashUnmesh">
<img alt="" src="/Content/Image/youtube.png">
</a>
<a href="https://www.instagram.com/udvash_unmesh/">
<img alt="" src="/Content/Image/instagram.png">
</a>
<a href="https://www.linkedin.com/in/udvashunmesh/">
<img alt="" src="/Content/Image/linkedIn.png">
</a>
</div>
</li>
</ul>
</div><!-- end col -->
</div><!-- end row -->
<!-- end footer top section -->
<div class="row uu-footer-bottom">
<div class="col-12">
<p class="text-center">
<span>Copyright © Udvash-Unmesh Online Care. All rights reserved. 2024</span>
| <span>P-5388 | V-17.167.13</span>
</p>
</div>
</div><!-- end row -->
<!-- end footer bottom section -->
</div><!-- end container -->
</footer><!-- End Footer Section -->
<!-- ----------------------------------------------------------------
OnnoRokom Analytics M2SaaS
----------------------------------------------------------------- -->
<iframe id="omplayer" src="https://om-player.osl.one" style="height: 1px; width: 1px; border: none; position: absolute;"></iframe>
<iframe id="AnalyticsIFrame" src="https://gateway.onnorokomprojukti.com/AnalyticsApi/Analytics/Log/aHR0cHM6Ly9vbmxpbmUudWR2YXNoLXVubWVzaC5jb20vQWNjb3VudC9Mb2dpbg" style="height: 1px; width: 1px; border: none; position: absolute;"></iframe>
<script type="text/javascript" src="https://onnorokomprojukti.com/lib/m2-analytics.js"></script>
<!-- ----------------------------------------------------------------
Page Scripts
----------------------------------------------------------------- -->
<!-- Bootstrap -->
<script type="text/javascript" src="/Content/UmsTheme/assets/lib/bootstrap/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="/Content/UmsTheme/assets/lib/bootstrap-datepicker/bootstrap-datepicker.js"></script>
<!-- Fontawesome -->
<script src="/Scripts/bootstrap-datetimepicker.min.js"></script>
<!-- Common -->
<script type="text/javascript" src="/Scripts/Common-2.0.js?v=167.13"></script>
<!-- Main -->
<script type="text/javascript" src="/Content/UmsTheme/assets/js/main.js?v=167.13"></script>
<script type="text/javascript" src="/Scripts/footer.js?v=167.13"></script>
<!--Online.Udvash-unmesh.com-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-SRED121DT2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-SRED121DT2');
</script>
<!-- ORGbd-UMSbd -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-QF4NT4J39W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-QF4NT4J39W');
</script>
<!-- Hotjar Tracking Code for online.udvash-unmesh.com -->
<script>
(function (h, o, t, j, a, r) {
h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) };
h._hjSettings = { hjid: 1908076, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script'); r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<!--Browser suggested script-->
<script>
//$(document).ready(function () {
// var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
// if (!isChrome) {
// showAlert();
// }
// $(document).on('click', '.close-browser-alert-message', function () {
// $(this).parents('.uuu-browser-alert').remove();
// });
//});
function showAlert() {
$('body').append(`<div class="uuu-browser-alert d-middle">
<div class="card">
<div class="card-body">
<span class="position-absolute close-browser-alert-message"><img src="/Content/UmsTheme/assets/img/QAndA/cross2.png"></span>
<p class="text-danger text-center mb-0">For best experience, please use Google Chrome browser.</p>
</div>
</div>
</div>`);
//alert("For best experience, please use Google Chrome browser.");
//setTimeout(function () {
// showAlert();
//}, 2 * 60 * 60 * 1000);
}
</script>
<script type="text/javascript">
$(document).on("input propertychange", "#RegistrationNumber", function (event) {
var registrationNumber = $("#RegistrationNumber").val();
if (registrationNumber == "") {
$("#RegistrationNumber").addClass('is-invalid');
}
else {
$("#RegistrationNumber").removeClass('is-invalid');
}
if ($(this).val().length > 20) {
$(this).val($(this).val().substring(0, 20));
}
});
$(document).on("click", "#btnSubmit", function (event) {
FormSubmit();
});
function FormSubmit() {
var registrationNumber = $("#RegistrationNumber").val().trim();
var error = 0;
if (registrationNumber == "") {
error += 1;
$("#RegistrationNumber").addClass('is-invalid');
}
else {
$("#RegistrationNumber").removeClass('is-invalid');
}
if (error == 0) {
$("#loginForm").get(0).submit();
}
}
$(document).ready(function () {
$("#RegistrationNumber").focus();
$(document).on("input propertychange", "#RegistrationNumber", function (e) {
if ($(this).val().length > 20) {
$(this).val($(this).val().substring(0, 20));
}
});
$('#RegistrationNumber').keypress(function (e) {
var regex = new RegExp("^[0-9]+$");
var str = String.fromCharCode(!e.charCode ? e.which : e.charCode);
if (regex.test(str)) {
return true;
}
e.preventDefault();
return false;
});
$("#RegistrationNumber").bind('paste', function () {
var self = this;
setTimeout(function () {
if (!/^[0-9]+$/.test($(self).val())) {
$(self).val('');
}
else {
var input = $(self).val();
$(self).val(input);
}
}, 0);
});
$("#loginForm").submit(function () {
return false;
});
$('body').keydown(function (e) {
if (e.keyCode == 13) {
FormSubmit();
}
});
//$(document).on("input propertychange", "#Password", function (e) {
// if ($(this).val().length > 200) {
// $(this).val($(this).val().substring(0, 200));
// }
//});
});
</script>
<iframe id="_hjSafeContext_80656031" title="_hjSafeContext" tabindex="-1" aria-hidden="true" src="about:blank" style="display: none !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important;"></iframe></body></html>