-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 1.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Adding Dates More Than One</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container container-fluid">
<form id="datePickerForm">
<br/> <button type="button" id="submitButton" onclick="addNewElements()">Yeni tarih ekle +</button> <br/> <br/>
<label for="from">Giriş Tarihi: </label> <input type="text" data-toggle="tooltip" id="from" readonly="true" title="Boş bırakmayın!" onchange="addNewElements()" name="from"/>
<label for="to">Çıkış Tarihi: </label> <input type="text" data-toggle="tooltip" id="to" readonly="true" title="Boş bırakmayın!" onchange="addNewElements()" name="to"/>
<span name="datePickerParagraph"></span>
</form>
</div>
<script src="datePicker.js"></script>
</body>
</html>