-
Notifications
You must be signed in to change notification settings - Fork 0
/
conditional.html
48 lines (45 loc) · 1.28 KB
/
conditional.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
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>conditional</title>
<link
rel="stylesheet"
href="/asset/bootstrap-5.1.3-dist/css/bootstrap.min.css"
/>
</head>
<body>
<div class="container my-4">
<div class="m-auto border border-primary p-5 rounded">
<form action="" method="get">
<div class="mb-3">
<label for="" class="form-label"></label>
<input
type="text"
name=""
id="word"
class="form-control"
placeholder=""
/>
<small id="helpId" class="text-muted d-block"
>Check if you can use this word in this class</small
>
<button
onclick="checkWord()"
type="button"
id="check"
class="btn btn-primary btn-block"
>
Check
</button>
<div class="mb-3 p-5 alert-info mt-5" id="feedback"></div>
</div>
</form>
</div>
</div>
<script src="/js/conditional.js"></script>
</body>
</html>