|
|
@ -10,7 +10,34 @@ |
|
|
|
<body> |
|
|
|
<div class="container"> |
|
|
|
<h1>BS-Formulář</h1> |
|
|
|
|
|
|
|
<form action=""> |
|
|
|
<div class="mb-3"> |
|
|
|
<label for="formFile" class="form-label">Default file input example</label> |
|
|
|
<input class="form-control" type="file" id="formFile"> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="mb-3"> |
|
|
|
<label for="exampleDataList" class="form-label">Datalist example</label> |
|
|
|
<input class="form-control" list="datalistOptions" id="exampleDataList" placeholder="Type to search..."> |
|
|
|
<datalist id="datalistOptions"> |
|
|
|
<option value="San Francisco"> |
|
|
|
<option value="New York"> |
|
|
|
<option value="Seattle"> |
|
|
|
<option value="Los Angeles"> |
|
|
|
<option value="Chicago"> |
|
|
|
</datalist> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="form-check form-switch"> |
|
|
|
<input class="form-check-input" type="checkbox" id="flexSwitchCheckDefault"> |
|
|
|
<label class="form-check-label" for="flexSwitchCheckDefault">Default switch checkbox input</label> |
|
|
|
</div> |
|
|
|
</form> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="js/bootstrap.min.js"></script> |
|
|
|