если для всех интутов
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text">
<input type="text">
<script>
[].forEach.call(document.querySelectorAll('input'), el=>el.onkeyup=function(){
this.value=this.value.replace(/^(.)/gm, el => el.toUpperCase());
});
</script>
</body>
</html>