Machine Problem

Write a program that uses an upper case filter to convert the given username from lower case format into upper case format.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGgThank you very much for your support.

Program Listing

<!-- index.htm
  Author   : Prof. Jake Rodriguez Pomperada, MAED-IT, MIT
  Date     : August 14, 2021  8:32 PM   Saturday
  Place    : Bacolod City, Negros Occidental
  Websites : www.jakerpomperada.com and www.jakerpomperada.blogspot.com
  Email    : jakerpomperada@gmail.com
  Location : Bacolod City, Negros Occidental Philippines
 -->

<html>
  <head>
      <title>String Upper Case Using Filter in AngularJS</title>
     <script type="text/javascript" src="angular.min.js"></script>
 </head>
 <style>
body {
  font-family: arial;
  font-size: 25px;
  font-weight: bold;
}
</style>
<body>
 <div ng-app>
   <h3>String Upper Case Using Filter in AngularJS</h3>
<body>
    <div ng-app ng-init="Username='lydia'">
  <p>User Name: <input type="text" ng-model = "Username"></p>
 The User Name in Upper Case Format: &nbsp;
 <span ng-bind="Username | uppercase"></span>
  </div>
</body>
  </html>