Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AngularJS An Introduction to Two-Way Data Binding ng-model

Input field to annotate with ng-model with is missing during the Two-way binding stage of the AngularJS course.

For some strange reason, the input field that task 2 of the first two-way binding stage of the AngularJS course wants challenge takers to annotate is missing.

This may cause confusion on whether or not the state of the challenge is correct.

The challenge doesn't tell you to create one, and the state of the this particular task doesn't append one either to minimize this confusion.

The challenge seemingly may have to be edited slightly to address this.

<!DOCTYPE html>
<html ng-app="myApp">
<head>
  <title>Angular.js</title>
</head>
<body>

    <p>Hello, {{user.name}}</p>
  <script src="js/angular.js"></script>
  <script src="app.js"></script>
</body>
</html>
index.html
<!DOCTYPE html>
<html ng-app="myApp">
<head>
  <title>Angular.js</title>
</head>
<body>
    <p>Hello, {{user.name}}</p>
  <script src="js/angular.js"></script>
  <script src="app.js"></script>
</body>
</html>
app.js
var myApp = angular.module('myApp',[]);