13 lines
445 B
HTML
13 lines
445 B
HTML
<!DOCTYPE html><html><head><meta charset="utf-8"><title>Test</title></head><body>
|
|
<input id="em" placeholder="curator@telecom.kz"><br>
|
|
<button onclick="doLogin()">Войти</button>
|
|
<p id="out"></p>
|
|
<script>
|
|
var U={"curator@telecom.kz":{n:"Куратор"}};
|
|
function doLogin(){
|
|
var e=document.getElementById("em").value.trim().toLowerCase();
|
|
document.getElementById("out").textContent=U[e]?"OK: "+U[e].n:"FAIL";
|
|
}
|
|
</script>
|
|
</body></html>
|