107 lines
4.7 KiB
HTML
107 lines
4.7 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||
|
<title>Material Design for Bootstrap</title>
|
||
|
<!-- MDB icon -->
|
||
|
<link rel="icon" href="../../img/mdb-favicon.ico" type="image/x-icon" />
|
||
|
<!-- Font Awesome -->
|
||
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" />
|
||
|
<!-- Google Fonts Roboto -->
|
||
|
<link
|
||
|
rel="stylesheet"
|
||
|
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
|
||
|
/>
|
||
|
<!-- MDB -->
|
||
|
<link rel="stylesheet" href="../../css/mdb.min.css" />
|
||
|
<!-- PRISM -->
|
||
|
<link rel="stylesheet" href="../../dev/css/new-prism.css" />
|
||
|
<!-- Custom styles -->
|
||
|
<style></style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="container-fluid my-5 py-5">
|
||
|
<div class="row">
|
||
|
<div class="col-4">
|
||
|
<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="formFileMultiple" class="form-label">Multiple files input example</label>
|
||
|
<input class="form-control" type="file" id="formFileMultiple" multiple />
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<label for="formFileDisabled" class="form-label">Disabled file input example</label>
|
||
|
<input class="form-control" type="file" id="formFileDisabled" disabled />
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<label for="formFileSm" class="form-label">Small file input example</label>
|
||
|
<input class="form-control form-control-sm" id="formFileSm" type="file" />
|
||
|
</div>
|
||
|
<div>
|
||
|
<label for="formFileLg" class="form-label">Large file input example</label>
|
||
|
<input class="form-control form-control-lg" id="formFileLg" type="file" />
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-4">
|
||
|
<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="formFileMultiple" class="form-label">Multiple files input example</label> -->
|
||
|
<input class="form-control" type="file" id="formFileMultiple" multiple />
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<!-- <label for="formFileDisabled" class="form-label">Disabled file input example</label> -->
|
||
|
<input class="form-control" type="file" id="formFileDisabled" disabled />
|
||
|
</div>
|
||
|
<div class="mb-3">
|
||
|
<!-- <label for="formFileSm" class="form-label">Small file input example</label> -->
|
||
|
<input class="form-control form-control-sm" id="formFileSm" type="file" />
|
||
|
</div>
|
||
|
<div>
|
||
|
<!-- <label for="formFileLg" class="form-label">Large file input example</label> -->
|
||
|
<input class="form-control form-control-lg" id="formFileLg" type="file" />
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-4">
|
||
|
<div class="form-outline mb-3">
|
||
|
<input type="text" id="form1" class="form-control" />
|
||
|
<label class="form-label" for="form1">Example label</label>
|
||
|
</div>
|
||
|
<div class="form-outline mb-3">
|
||
|
<input type="text" id="form1" class="form-control" />
|
||
|
<label class="form-label" for="form1">Example label</label>
|
||
|
</div>
|
||
|
<div class="form-outline mb-3">
|
||
|
<input type="text" id="form1" class="form-control" />
|
||
|
<label class="form-label" for="form1">Example label</label>
|
||
|
</div>
|
||
|
<div class="form-outline mb-3">
|
||
|
<input type="text" id="formControlSm" class="form-control form-control-sm" />
|
||
|
<label class="form-label" for="formControlSm">Form control sm</label>
|
||
|
</div>
|
||
|
<div class="form-outline mb-3">
|
||
|
<input type="text" id="formControlLg" class="form-control form-control-lg" />
|
||
|
<label class="form-label" for="formControlLg">Form control lg</label>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- MDB -->
|
||
|
<script type="text/javascript" src="../../js/mdb.min.js"></script>
|
||
|
<!-- PRISM -->
|
||
|
<script type="text/javascript" src="../../dev/js/new-prism.js"></script>
|
||
|
<!-- MDB SNIPPET -->
|
||
|
<!-- <script type="text/javascript" src="../../dev/js/dist/mdbsnippet.min.js"></script> -->
|
||
|
<!-- Custom scripts -->
|
||
|
<script type="text/javascript"></script>
|
||
|
</body>
|
||
|
</html>
|