generated from chalu/holiday-challenge-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<!--<title> Login and Registration Form in HTML & CSS </title>-->
<link rel="stylesheet" href="style.css">
<!-- Fontawesome CDN Link -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phonie</title>
<link rel="shortcut icon" href="icons/favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<form>
<label for="phone">Enter a phone number:</label>
<small id="notify"></small>
<div class="inputWithLogo">
<input type="tel" id="phone" name="phone" placeholder="0123-456-7890"
pattern="0([7,8,9])([0,1])\d{8}$|234([7,8,9])([0,1])\d{8}$" required>
<div id="logo_box"></div>
</div>
<small>Format: 09**-***-*** or 2348**-***-***</small>
</form>
<!-- // ============= EEND DO NOT EDIT ============== // -->
<script src="index.mjs" type="module"></script>
<!-- // ============= EEND DO NOT EDIT ============== // -->
</body>
</html>