-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="/src/styles.css" />
</head>
<body>
<div id="app" class="col-md-12 px-4">
<div class="row">
<div class="form-group m-1">
<label for="Phone" class="control-label">Phone</label>
<input
name="Phone"
id="Phone"
class="form-control"
type="tel"
data-mask="Telephone10"
/>
</div>
<div class="form-group m-1">
<!--Provides masked date input not a date-picker (type='text')-->
<label for="Date" class="control-label">Date</label>
<input
name="Date"
type="text"
id="Date"
class="form-control"
data-mask="MonthDayYear"
/>
</div>
</div>
</div>
<script src="./src/index.js"></script>
</body>
</html>