blob: 18fe441c0272a1aa96f4c940150127966fd06487 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Input</title>
<style type="text/css">
</style>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(event) {
console.log("DOM fully loaded and parsed");
var test = "x";
try {
localStorage.setItem(test, test);
localStorage.removeItem(test);
console.log("localStorage good");
} catch(err) {
console.log("localStorage failed with " + err);
}
});
</script>
</head>
<body>
<div>
<form action="input_submit" method="get" accept-charset="utf-8">
<label for="name">Name</label><input type="text" name="name" value="Fez" id="name">
<label for="email">email</label><input type="email" name="email" value="" id="name">
<label for="password">Password</label><input type="password" name="password" value="" id="password">
<input type="submit" name="some_name" value="OK" id="some_name">
</form>
</div>
</body>
</html>