テキストボックスとボタンでログインシステムを作ろうとしています。テキストボックスにパスワードを入力してからボタンを押すことになっていますが、これを行っても何も起こりません。これまでの私のコードは次のとおりです。
<html>
<body>
<script type="text/javascript">
function EnterPwerd() {
var pass= input = document.getElementById("text")
if ( (pass=='bacon') ) {
document.write("BACON is so good.")
}
else {
document.write("You put the wrong password you taco biscuit!")
}
</script>
<div id="text"><input type="text" value="" size="10" maxlength="15"></civ>
<input type="button" value="Enter" onClick="EnterPwerd()">
</body>
</html>