Skip to content

Instantly share code, notes, and snippets.

@Blackmist
Created May 15, 2013 19:05
Show Gist options
  • Save Blackmist/5586452 to your computer and use it in GitHub Desktop.
Save Blackmist/5586452 to your computer and use it in GitHub Desktop.
newpost.hbs with auth
{{#if isAuthenticated}}
<div class="span6">
{{view Ember.TextField valueBinding="title" class="span6" placeholder="Title"}}
</div>
<div class="span8">
{{view Ember.TextArea valueBinding="body" class="span8" rows="6" placeholder="Your blog goes here"}}
</div>
<div class="span12">
<button {{action save}} class="btn">Save</button>
</div>
{{else}}
<div class="alert alert-info">
<p>You don't appear to be logged in. Please select a login provider from the <strong>Login</strong> menu.</p>
</div>
{{/if}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment