forked from human-divanshu/Text-to-Sign-Language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.php
32 lines (31 loc) · 1.08 KB
/
test.php
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
30
31
32
<!DOCTYPE html>
<html>
<head>
<?php require_once("include.php"); ?>
<title>Test</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>Parsing test</h1>
<hr>
<label for="lang">Select langauge:</label><br>
<input type="radio" value="Hindi" id="lang" name="lang" checked> Hindi<br>
<input type="radio" value="English" id="lang" name="lang"> English <br><br>
<label for="line">Given sentence input below:</label>
<textarea name="line" id="line" style="width:100%; height:70px;" autofocus class="form-control"></textarea><br>
<button type="button" id="process" class="btn btn-primary">Process Input</button>
</div>
<div class="col-md-6">
<h1>Result</h2>
<hr>
<textarea id="result" style="width:100%; height:300px; overflow-y:scroll;" readonly></textarea>
</div>
</div>
</div> <!-- Row ends here -->
</div> <!-- Container ends here -->
<script type="text/javascript" src="js/parser.js"></script>
</body>
</html>