-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (62 loc) · 2.06 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
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
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Validator de Numere de Telefon</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="header">
<h1 class="title">Validator de Numere de Telefon</h1>
<p class="subtitle">Pentru România & SUA</p>
</header>
<main class="main-content">
<div class="validation-container">
<!-- Iconă pentru ghid vizual -->
<img
src="https://cdn-icons-png.flaticon.com/512/1827/1827379.png"
alt="Telefon Icon"
class="phone-icon"
/>
<!-- Selectare țară -->
<div class="form-group">
<label for="country-select">Selectați țara:</label>
<select id="country-select" class="dropdown">
<option value="ro">România</option>
<option value="us">SUA</option>
</select>
</div>
<!-- Câmpul pentru introducerea numărului de telefon -->
<div class="form-group">
<input
type="text"
id="user-input"
class="input-field"
placeholder="Introduceți un număr de telefon"
/>
</div>
<!-- Butoane pentru validare și ștergere -->
<div class="button-group">
<button id="check-btn" class="btn primary-btn">Validează</button>
<button id="clear-btn" class="btn secondary-btn">Șterge</button>
</div>
<!-- Zona pentru afișarea rezultatelor -->
<div id="results-div" class="results-div"></div>
</div>
</main>
<footer class="footer">
<p>
© 2024 Validator de Numere de Telefon | Toate Drepturile Rezervate
</p>
<p class="contact-info">
Contact:
<a href="mailto:orasanu.anamaria19@gmail.com"
>orasanu.anamaria19@gmail.com</a
>
</p>
</footer>
<!-- Scriptul JavaScript pentru validare -->
<script src="script.js"></script>
</body>
</html>