Created
October 16, 2015 23:36
-
-
Save michaltakac/066546407518a3d06faf to your computer and use it in GitHub Desktop.
Braintree demo - dashboard.html (v2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="dashboard"> | |
<div class="template-dashboard"> | |
<div class="page-header"> | |
<h1>Dashboard</h1> | |
</div> | |
{{#if showForm}} | |
<h3>Buy access to our list of items!</h3> | |
<form role="form"> | |
<div class="row"> | |
<div class="col-md-6 col-xs-12"> | |
<div id="payment-form"></div> | |
<button type="submit" class="btn btn-success">Submit</button> | |
</div> | |
</div> | |
</form> | |
{{/if}} | |
<ul class="list-group"> | |
{{#each items}} | |
<li class="list-group-item">{{ name }} <span class="label label-default">{{ rating }}</span></li> | |
{{/each}} | |
</ul> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment