-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (21 loc) · 696 Bytes
/
index.php
File metadata and controls
25 lines (21 loc) · 696 Bytes
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
<html>
<head>
<title>Grammarly</title>
<link rel="stylesheet" href="grammarly.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="grammarly.js"></script>
</head>
<body>
<h1>SpellChecker</h1>
<div class="MyContainer" align="center">
<input type="file" class="files" name="file"id="file" onchange="readFile(this)" >
<button type="button" id="sendrequest" onclick="upload()">Check</button>
</div>
<div class="out">
<div id='container' class="d1" contenteditable="True"></div>
<div id="custommenu" >
<ul></ul>
</div>
</div>
</body>
</html>