added input masks

This commit is contained in:
root
2019-06-14 01:22:46 -04:00
parent 3d3bcff09e
commit 0eda7e9762
86 changed files with 20308 additions and 28 deletions

34
vendor/Inputmask/index.html vendored Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="css/inputmask.css" rel="stylesheet" type="text/css">
</head>
<body>
<input id="test1" name="test1"/><br/>
<input id="test2" name="test2"/><br/>
<input id="test3" name="test3"/><br/>
<br/>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.js" charset="utf-8"></script>
<script type="text/javascript" src="dist/jquery.inputmask.js" charset="utf-8"></script>
<script>
console.log(navigator.userAgent);
$("#test1").inputmask("datetime", {
inputFormat: "dd/mm/yyyy",
outputFormat: "mm-yyyy-dd",
inputEventOnly: true
});
$("#test2").inputmask("datetime", {
inputFormat: "dd/mm/yyyy",
outputFormat: "mm-yyyy-dd",
inputEventOnly: true
});
$("#test3").inputmask("datetime", {
inputFormat: "dd/mm/yyyy",
outputFormat: "mm-yyyy-dd",
inputEventOnly: true
});
</script>
</body>
</html>