mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
18 lines
439 B
HTML
18 lines
439 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="script/common.css">
|
||
|
<script src="script/common.js"></script>
|
||
|
<script>
|
||
|
function setup(){
|
||
|
$('input').datepicker({
|
||
|
todayBtn: true
|
||
|
});
|
||
|
};
|
||
|
</script>
|
||
|
</head>
|
||
|
<body data-capture="input, .datepicker">
|
||
|
<input type="text" value="03/03/2013">
|
||
|
</body>
|
||
|
</html>
|