Spaces:
Paused
Paused
File size: 2,037 Bytes
75a538d |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Question Generator</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
text-align: center;
}
h1 {
margin-bottom: 1.5rem;
font-weight: 500;
}
select, button {
width: 100%;
padding: 0.8rem;
margin-bottom: 1rem;
border-radius: 4px;
border: 1px solid #ddd;
font-size: 1rem;
}
button {
background-color: #5cb85c;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #4cae4c;
}
</style>
</head>
<body>
<div class="container">
<h1>Select Question Type</h1>
<form action="/get_questions" method="POST">
<select name="question_type" required>
<option value="t1" selected>Choose the correct meaning of the word</option>
<option value="t2">Personal responce</option>
<option value="t3">Give the reasons</option>
<option value="t4">Fill in the blanks</option>
<option value="t5">True or False: If False, correct them.</option>
</select>
<button type="submit">Generate Questions</button>
</form>
</div>
</body>
</html>
|