Spaces:
Sleeping
Sleeping
Update templates/quiz.html
Browse files- templates/quiz.html +1 -13
templates/quiz.html
CHANGED
@@ -11,7 +11,6 @@
|
|
11 |
margin: 0;
|
12 |
padding: 0;
|
13 |
}
|
14 |
-
|
15 |
.container {
|
16 |
max-width: 600px;
|
17 |
margin: 50px auto;
|
@@ -20,21 +19,17 @@
|
|
20 |
border-radius: 8px;
|
21 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
22 |
}
|
23 |
-
|
24 |
h1 {
|
25 |
text-align: center;
|
26 |
color: #333;
|
27 |
}
|
28 |
-
|
29 |
p {
|
30 |
margin-bottom: 20px;
|
31 |
}
|
32 |
-
|
33 |
label {
|
34 |
display: block;
|
35 |
margin-bottom: 10px;
|
36 |
}
|
37 |
-
|
38 |
input[type="number"] {
|
39 |
width: 100%;
|
40 |
padding: 10px;
|
@@ -42,7 +37,6 @@
|
|
42 |
border: 1px solid #ccc;
|
43 |
border-radius: 5px;
|
44 |
}
|
45 |
-
|
46 |
.btn {
|
47 |
display: block;
|
48 |
width: 100%;
|
@@ -54,7 +48,6 @@
|
|
54 |
cursor: pointer;
|
55 |
transition: background-color 0.3s ease;
|
56 |
}
|
57 |
-
|
58 |
.btn:hover {
|
59 |
background-color: #0056b3;
|
60 |
}
|
@@ -67,15 +60,10 @@
|
|
67 |
<form action="/" method="post">
|
68 |
<label for="user_input">็ตๆๅผใๅ
ฅๅใใฆใใ ใใ:</label>
|
69 |
<input type=text id="user_input" name="user_input" required>
|
70 |
-
<input type="hidden" name="element" value="{{ current_ๅๅ็ฉๅ }}">
|
71 |
<button type="submit" class="btn">็ญใๅใใ</button>
|
72 |
</form>
|
73 |
{% if result %}
|
74 |
<p>{{ result }}</p>
|
75 |
{% endif %}
|
76 |
<form action="/next" method="post">
|
77 |
-
<button type="submit" class="btn">ๆฌกใฎๅ้ก</button>
|
78 |
-
</form>
|
79 |
-
</div>
|
80 |
-
</body>
|
81 |
-
</html>
|
|
|
11 |
margin: 0;
|
12 |
padding: 0;
|
13 |
}
|
|
|
14 |
.container {
|
15 |
max-width: 600px;
|
16 |
margin: 50px auto;
|
|
|
19 |
border-radius: 8px;
|
20 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
21 |
}
|
|
|
22 |
h1 {
|
23 |
text-align: center;
|
24 |
color: #333;
|
25 |
}
|
|
|
26 |
p {
|
27 |
margin-bottom: 20px;
|
28 |
}
|
|
|
29 |
label {
|
30 |
display: block;
|
31 |
margin-bottom: 10px;
|
32 |
}
|
|
|
33 |
input[type="number"] {
|
34 |
width: 100%;
|
35 |
padding: 10px;
|
|
|
37 |
border: 1px solid #ccc;
|
38 |
border-radius: 5px;
|
39 |
}
|
|
|
40 |
.btn {
|
41 |
display: block;
|
42 |
width: 100%;
|
|
|
48 |
cursor: pointer;
|
49 |
transition: background-color 0.3s ease;
|
50 |
}
|
|
|
51 |
.btn:hover {
|
52 |
background-color: #0056b3;
|
53 |
}
|
|
|
60 |
<form action="/" method="post">
|
61 |
<label for="user_input">็ตๆๅผใๅ
ฅๅใใฆใใ ใใ:</label>
|
62 |
<input type=text id="user_input" name="user_input" required>
|
|
|
63 |
<button type="submit" class="btn">็ญใๅใใ</button>
|
64 |
</form>
|
65 |
{% if result %}
|
66 |
<p>{{ result }}</p>
|
67 |
{% endif %}
|
68 |
<form action="/next" method="post">
|
69 |
+
<button type="submit" class="btn">ๆฌกใฎๅ้ก</button>
|
|
|
|
|
|
|
|