14 lines
697 B
HTML
14 lines
697 B
HTML
<!DOCTYPE html><html><head><meta charset="utf-8"><title>Test</title></head><body>
|
|
<form onsubmit="return doLogin(event)">
|
|
<input id="em" placeholder="email"><input id="pw" type="password" placeholder="pass">
|
|
<button type="submit">Войти</button>
|
|
</form>
|
|
<p id="out"></p>
|
|
<script>
|
|
"use strict";
|
|
var users={"curator@telecom.kz":{name:"Куратор"},"dpp@telecom.kz":{name:"ДПБ"}};
|
|
function doLogin(e){e.preventDefault();var em=document.getElementById("em").value.trim().toLowerCase();if(users[em]){document.getElementById("out").textContent="OK: "+users[em].name}else{document.getElementById("out").textContent="FAIL"}return false}
|
|
console.log("Test loaded");
|
|
</script>
|
|
</body></html>
|