17 lines
680 B
HTML
17 lines
680 B
HTML
<!DOCTYPE html><html><head><meta charset="utf-8"><title>Test</title></head><body>
|
|
<p>Введите email и нажмите кнопку:</p>
|
|
<input id="em" placeholder="curator@telecom.kz"><br><br>
|
|
<button onclick="test()">Проверить вход</button>
|
|
<p id="out" style="font-weight:bold;margin-top:16px"></p>
|
|
<script>
|
|
function test(){
|
|
var em=document.getElementById("em").value.trim().toLowerCase();
|
|
if(em==="curator@telecom.kz"||em==="dpp@telecom.kz"){
|
|
document.getElementById("out").textContent="✅ Доступ разрешён: "+em;
|
|
}else{
|
|
document.getElementById("out").textContent="❌ Неизвестный email";
|
|
}
|
|
}
|
|
</script>
|
|
</body></html>
|