I would like my datetimepicker to be shown as the 5th datetimepicker in https://tempusdominus.github.io/bootstrap-4/Usage/#no-icon-input-field-only (No Icon (input field only)).
However, when using the CDNJS only, the output is a deformed version of what is shown in the examples. In an attempt to fix the problem, I included the source code found in the link below by attributing a local path. This makes the datetimepicker not showing up at all.
Source code: https://github.com/tempusdominus/bootstrap-4
Neither including the CDNJS only, the source code (local path) only nor both works.
I would like to be able to change the colours in the future so doing it with a source code would be more beneficial for me...
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/tempusdominus-bootstrap-4/5.0.1/js/tempusdominus-bootstrap-4.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tempusdominus-bootstrap-4/5.0.1/css/tempusdominus-bootstrap-4.min.css" />
<link rel="stylesheet" type="text/css" href="lib/datetimepicker/tempusdominus-bootstrap-4.min.css" >
<script type="text/javascript" src="lib/datetimepicker/tempusdominus-bootstrap-4.min.js"></script>
<div class="col-lg-12">
<input type="text" class="form-control datetimepicker-input" id="datetimepicker5" data-toggle="datetimepicker" data-target="#datetimepicker5" placeholder="Data e Hora">
</div>
<script>
$(function () {
$('#datetimepicker5').datetimepicker();
});
</script>