remove streamlit as gui

This commit is contained in:
2023-07-25 17:44:59 +02:00
parent b2f166d232
commit e3bd42a19d
8 changed files with 499 additions and 124 deletions
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Input Field and Button</title>
</head>
<body>
<input type="text" id="myInput">
<button type="button" onclick="myFunction()">Submit</button>
<script>
function myFunction() {
var input = document.getElementById("myInput").value;
alert("Input value: " + input);
}
</script>
</body>
</html>