-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Date Picker</title>
<link rel="stylesheet" href="vendor/codalia/css/styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="shortcut icon" href="#" />
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/plugin/localeData.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/locale/fr.js"></script>
</head>
<body>
<div class="container">
<h1>Datepicker</h1>
<form action="#" method="post" id="form" role="form" class="php-email-form">
<div class="row mb-5">
<div class="col-md-6 form-group">
<label for="departure">Departure</label>
<input type="text" name="departure" class="form-control date departure" id="departure">
</div>
</div>
<div class="row mb-5">
<div class="col-md-6 form-group">
<label for="arrival">Arrival</label>
<input type="text" name="arrival" class="form-control date arrival" id="arrival">
</div>
</div>
<div class="row">
<div class="col-md-6 form-group">
<label for="birth_date">Birth date</label>
<input type="text" name="birth_date" class="form-control date birth_date" id="birth_date" readonly>
</div>
</div>
</form>
</div>
<script src="vendor/codalia/lang/en.js"></script>
<script src="vendor/codalia/lang/fr.js"></script>
<script src="vendor/codalia/c.datepicker.js"></script>
<script src="js/datepicker.js"></script>
</body>
</html>