<!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>