blob: a989750a59174f730937a0838a3d9754b307e991 (
plain) (
blame)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HebrewParseTrainer</title>
<link rel="stylesheet" href="/vendor/twbs/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="/vendor/twbs/bootstrap/dist/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="/public/css/hebrewparsetrainer.css">
</head>
<body role="application">
<div class="container" role="main">
<div class="page-header">
<h1>HebrewParseTrainer</h1>
</div>
<div class="row">
<div class="col-md-2 col-sm-4">
<form id="hebrewparsetrainer-settings">
<div class="form-group">
<h3>Stems</h3>
<?php foreach (\HebrewParseTrainer\Stem::all() as $stem){ $stem = $stem->name; ?>
<div class="checkbox">
<label><input class="reload-verb" type="checkbox" name="stem" value="<?=$stem?>" checked="checked"/> <?=$stem?></label>
</div>
<?php } ?>
</div>
<div class="form-group">
<h3>Tenses</h3>
<?php foreach (\HebrewParseTrainer\Tense::all() as $tense){ $tense = $tense->name; ?>
<div class="checkbox">
<label><input class="reload-verb" type="checkbox" name="tense" value="<?=$tense?>" checked="checked"/> <?=$tense?></label>
</div>
<?php } ?>
</div>
<div class="form-group">
<h3>Roots</h3>
<?php foreach (\HebrewParseTrainer\Root::all() as $root){ $root = $root->root; ?>
<div class="checkbox">
<label class="hebrew"><input class="reload-verb" type="checkbox" name="root" value="<?=$root?>" checked="checked"/> <?=$root?></label>
</div>
<?php } ?>
</div>
<div class="form-group">
<h3>Settings</h3>
<div class="checkbox">
<label><input type="checkbox" id="settings-audio" checked="checked"/> Audio</label>
</div>
</div>
</form>
</div>
<div class="col-md-10 col-sm-8">
<p class="bg-danger" id="trainer-404">There are no verbs matching the criteria in our database.</p>
<p class="lead"><span class="hebrew hebrew-large" id="trainer-verb"></span><span id="trainer-answer"></span></p>
<div class="row">
<div class="col-md-8">
<div class="form-group">
<label for="trainer-input">Parse:</label>
<input type="text" class="form-control" id="trainer-input" placeholder="Q pf 3 m s"/>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label for="trainer-parsed">Interpreted as:</label>
<input type="text" class="form-control" id="trainer-parsed" readonly="readonly"/>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="/vendor/components/jquery/jquery.min.js"></script>
<script src="/vendor/twbs/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="/public/js/hebrewparsetrainer.js"></script>
</body>
</html>
|