-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.html
70 lines (62 loc) · 2.21 KB
/
example.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Search Person In Venezuela</title>
<!--
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
-->
</head>
<body style="background-color: dimgray;">
<br><br><br>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<label for="documentTypesList">Document Type</label>
<select id="documentTypesList" required>
<option value="">Select a value...</option>
</select>
</div>
<div class="input-field col s6">
<label for="documentNumber">Identifier Number</label>
<input id="documentNumber" type="number" required />
</div>
<div class="col s6" id="digitValidatorContainer">
<label for="digitValidator">Digit Validator</label>
<input id="digitValidator" type="number" />
</div>
<div class="col s6">
<label for="birthDate">Birth Date</label>
<input id="birthDate" type="date" />
</div>
</div>
<div class="row">
<div class="col s6">
<label for="cne">CNE</label>
<input id="cne" type="checkbox" />
</div>
<div class="col s6">
<label for="cne">IVSS Pensiones</label>
<input id="cne" type="checkbox" />
</div>
<div class="col s6">
<label for="cne">IVSS Individual</label>
<input id="cne" type="checkbox" />
</div>
<div class="col s6">
<label for="cne">SENIAT</label>
<input id="cne" type="checkbox" />
</div>
<div class="input-field col s6">
<button type="button" id="searchPerson">
Search Person
</button>
</div>
</form>
</div>
<script type="module" src="./public/example.js"></script>
</body>
</html>