-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from kristiana-16/LANG_007a
LANG_007a [SF,WK]
- Loading branch information
Showing
13 changed files
with
611 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<!DOCTYPE html> | ||
<html xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/html"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>TestingMode</title> | ||
|
||
<!-- Bootstrap --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> | ||
|
||
<!-- Bootstrap Script Dependencies --> | ||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> | ||
|
||
<!-- Some Custom Style --> | ||
<style> | ||
body { text-align: center; margin-top: 50px;} | ||
</style> | ||
|
||
</head> | ||
<body> | ||
<div th:remove="tag"> | ||
|
||
<h5>Testing mode</h5> | ||
|
||
<p>Please enter the amount of vocabulary you want to check:</p> | ||
<form method="get" action="/user/testinggerman"> | ||
<select th:id="amountg" th:name="amountg"> | ||
<option value="1">1</option> | ||
<option value="2">2</option> | ||
<option value="3">3</option> | ||
<option value="4">4</option> | ||
<option value="5">5</option> | ||
<option value="6">6</option> | ||
<option value="7">7</option> | ||
<option value="8">8</option> | ||
<option value="9">9</option> | ||
<option value="10" selected>10</option> | ||
<option value="15">15</option> | ||
<option value="20">20</option> | ||
<option value="25">25</option> | ||
<option value="30">30</option> | ||
<option value="35">35</option> | ||
<option value="40">40</option> | ||
<option value="45">45</option> | ||
<option value="50">50</option> | ||
<option value="75">75</option> | ||
<option value="100">100</option> | ||
</select> | ||
<input type="submit" value="English to German"> | ||
</form> | ||
|
||
</br> | ||
|
||
<form method="get" action="/user/testingenglish"> | ||
<select th:id="amounte" th:name="amounte"> | ||
<option value="1">1</option> | ||
<option value="2">2</option> | ||
<option value="3">3</option> | ||
<option value="4">4</option> | ||
<option value="5">5</option> | ||
<option value="6">6</option> | ||
<option value="7">7</option> | ||
<option value="8">8</option> | ||
<option value="9">9</option> | ||
<option value="10" selected>10</option> | ||
<option value="15">15</option> | ||
<option value="20">20</option> | ||
<option value="25">25</option> | ||
<option value="30">30</option> | ||
<option value="35">35</option> | ||
<option value="40">40</option> | ||
<option value="45">45</option> | ||
<option value="50">50</option> | ||
<option value="75">75</option> | ||
<option value="100">100</option> | ||
</select> | ||
|
||
<input type="submit" value="German to English"> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.