Delete html_form2

This commit is contained in:
Joe James
2020-02-16 11:36:44 -06:00
committed by GitHub
parent cffc59b0f1
commit fd29c26f9b

View File

@@ -1,18 +0,0 @@
<html>
<head>
<script type="text/javascript">
window.onload = function(){
document.getElementById('send').onclick = function(e){
alert(document.getElementById("name").value);
return false;
}
}
</script>
</head>
<body>
<form method="post">
<input type="text" name="name" id="name" />
<input type="submit" name="send" id="send" value="send" />
</form>
</body>
</html>