-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Language Translator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<select id="audioSource"></select>
<button id="testButton" onclick="callTest()">Click me to make a request!</button>
<div id="serverResponse">Heyyy</div>
<fieldset>
<form name='translate' action="#">
<div>
Enter the text you want to translate:<br>
<input type="text" name="textvalue"><br>
</div>
<div>
<button onclick='handleSubmit(event)'>Submit</button>
</div>
</form>
</fieldset>
<div id='translateResponse'>Answer</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="main.js"></script>
</body>
</html>