-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaylite.html
36 lines (29 loc) · 1.06 KB
/
daylite.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
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1"/>
<script type="text/javascript" src="lib/require.js"></script>
<script>
require(["lib/moment/moment", "lib/moment/lang/fr", "js/daylite", "demo"]);
</script>
<link rel="stylesheet" type="text/css" href="daylite.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<title>Daylite Demo</title>
</head>
<body style="font-family: Helvetica, Arial, sans-serif;">
Please fill out this form.
<form class="well">
<label>Name:</label>
<input type="text">
<label>Date:</label>
<input type="text" id="dateField" value="5/9/2012" readonly="readonly">
<div id="picker" style="display: none;">
</div>
<label>Another Date:</label>
<!-- TODO: add a new style here... so users don't have to set the readonly property.
maybe it will show an icon too -->
<input type="text" id="secondDateField" readonly="readonly">
<div id="secondPicker" style="display: none;">
</div>
</form>
</body>
</html>