-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.49 KB
/
index.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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<title>JMBG validator</title>
</head>
<body>
<div class="container">
<h1>JMBG Validacija</h1>
</div>
<div class="form">
<form action="">
<p><b>Ime:</b></p>
<input type="text" id="firstName" placeholder="Unesite ime">
</form>
<form action="">
<p><b>Prezime:</b></p>
<input type="text" id="lastName" placeholder="Unesite prezime">
</form>
<form action="">
<p><b>JMBG:</b></p>
<input type="number" id="jmbgInput" placeholder="Unesite JMBG">
<p></p> <button type="button" class="btn btn-dark" id="check"><b>Validacija</b></button>
<p><b>Rezultat:</b></p>
<p id="message"></p>
<p id="person"></p>
</form>
</div>
<!--optional
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"></script>
-->
<script src="main.js"></script>
</body>
</html>