-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (56 loc) · 2.38 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<head>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="wrapper">
<div class="left">
<div class="container query">
<div class="center">
<form action="javascript:getPast();">
<input type="text" placeholder="Type in a verb.." data-bind="value:verb">
<button data-bind="click:getPast" type="submit">Get</button>
</form>
</div>
</div>
<div class="container result">
<div>
<div class="matches" data-bind="if:pasttense">
<div class="heading">
Past Tense
</div>
<div class="resHead" data-bind="text:pasttense">
</div>
<div class="heading">
Participle
</div>
<div class="participle" data-bind="text:participle">
</div>
</div>
</div>
</div>
</div>
<div class="right">
<div class="main-heading">PASTENSER</div>
<div>A quick API that gives you the past tense of the requested verb.</div>
<div class="warning">
<p> Life is full of surprises! To avoid getting surprises from this API,
<span>please pass only a verb in the request.</span></p>
Also, this API doesn't have NLP or AI module backing it. <span>The results may not be right all the time,</span> so please don't
use this as a verb encyclopedia!
</div>
<h5>BUILT ON</h5>
<ul>
<li>Node</li>
<li>Express</li>
<li>Jquery</li>
<li>KnockoutJs</li>
</ul>
<h5>CODE</h5>
<a href="https://github.com/samuellawrentz/PastTenser">Fork me! Star me! Follow me!</a>
</div>
</div>
<script src="script/app.js"></script>
</body>