todo/public/vendor/bootstrap-datepicker/docs/_screenshots/markup_component.html
Supan Adit Pratama 35d8715ab4 first commit
2020-06-23 11:40:37 +07:00

27 lines
813 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="script/common.css">
<script src="script/common.js"></script>
<script>
function setup(){
$('.date').datepicker({
format: 'mm-dd-yyyy'
});
}
</script>
</head>
<body data-capture=".input-group, .datepicker">
<div class="row">
<div class="col-sm-offset-4 col-sm-3">
<div class="input-group date">
<input type="text" class="form-control" value="12-02-2012">
<div class="input-group-addon">
<span class="glyphicon glyphicon-th"></span>
</div>
</div>
</div>
</div>
</body>
</html>