Obsługa formularzy w Js

<!DOCTYPE html>
<html>
	<head>
		<title>015: formularze JS</title>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<script type="text/javascript">
function logowanie(formularz) {
	if((formularz.login.value=="zaliczenie407") & (formularz.password.value=="zasx1212")) {
		/*window.location.replace("./002-plan-lekcji.html")*/
		document.getElementById("informacja").innerHTML = "Ostatnia modyfikacja pliku: " + document.lastModified.bold()
	} else {
		document.getElementById("informacja").innerHTML = "Podane dane nie są poprawne.";

	}
}
		</script>
	</head>
	<body>
		<div id="informacja"></div>
		<form name="formularz">
			<table>
				<tr>
					<td align="right">Login:</td>
					<td align="left"><input type="text" name="login" required /></td>
				</tr>
				<tr>
					<td align="right">Hasło:</td>
					<td align="left"><input type="password" name="password" required /></td>
				</tr>
				<tr>
					<td colspan="2"><input type="button" value=" Zaloguj " onClick="logowanie(this.form)" /></td>
				</tr>
			</table>
		</form>
	</body>
</html>

 

Jedna myśl nt. „Obsługa formularzy w Js

Dodaj komentarz

Twój adres e-mail nie zostanie opublikowany. Wymagane pola są oznaczone *

Witryna wykorzystuje Akismet, aby ograniczyć spam. Dowiedz się więcej jak przetwarzane są dane komentarzy.