I am having some issues getting emberjs to pick up and render a handlebars template file. I think it may be a configuration issue since i get the following error in my browser's debug console
Error: <(subclass of Welcome.LoginView):ember166> - Unable to find template "login_view".
I have the following code in emberjs code in my app.js file
Welcome = Ember.Application.create({
});
Welcome.LoginView = Ember.View.extend({
templateName: 'login_view',
didInsertElement: function() {
},
willDestroyElement: function() {
},
toggleForgotPasswordView: function(event) {
$("#forgot-password-form-container").toggle();
$("#login-form-container").toggle();
return false;
}
});
I also have the following snippet in my index.html file
<script type="text/x-handlebars" >
{{view Welcome.LoginView}}
</script>
Finally relative to the app.js file i have the file templates/login_view.handlerbars, which contains the following snippet
<form class="form-inline">
<fieldset>
<input type="text" name="email" placeholder="email address">
<input type="password" name="password" placeholder="password">
<button class="btn btn-primary" type="submit">Sign In</button>
<span class="loading"></span>
<label class="remember-me checkbox"><input type="checkbox"/> Remember Me</label>
<a href="#" id="forgot-password-link" class="forgot-password" {{action "toggleForgotPasswordView" on="click"}}>Forgot password?</a>
</fieldset>
</form>
The error seems to indicate that it can't locate the handlebars template. When i look at the generated HTML i don't see the above form on the page.
Can anyone shed some light on what i am doing wrong.