summaryrefslogtreecommitdiff
path: root/views/partials/edit-subscription.ejs
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-01-23 17:58:41 -0500
committerJules Laplace <jules@okfoc.us>2015-01-23 17:58:41 -0500
commit5efb0ed941ed80136e63014c4f615574b2b613d7 (patch)
tree721ad13db392d47c5e8fd24a1b4be2de8019a560 /views/partials/edit-subscription.ejs
parent74fb7a313b4d9ad3517e97133febff9cada96fe0 (diff)
edit subscription partial stub
Diffstat (limited to 'views/partials/edit-subscription.ejs')
-rw-r--r--views/partials/edit-subscription.ejs33
1 files changed, 33 insertions, 0 deletions
diff --git a/views/partials/edit-subscription.ejs b/views/partials/edit-subscription.ejs
new file mode 100644
index 0000000..0aa5281
--- /dev/null
+++ b/views/partials/edit-subscription.ejs
@@ -0,0 +1,33 @@
+<div class="mediaDrawer fixed animate editSubscription">
+ <span class="close">X</span>
+ <div id="form_container">
+ <form enctype="multipart/form-data" method="post">
+ <input type="hidden" name="_csrf" value="[[- token ]]">
+ <ul>
+ <li class="section_break">
+ <h3>Edit Subscription</h3>
+ </li>
+ <li>
+ [[ if (! user.plan_level) { ]]
+ You are currently using the free plan. For access to all of Vvalls features,
+ consider upgrading to a paid plan.
+ <p>
+ <a href="/about/brochure">View the Plans</a>
+ [[ } else { ]]
+ Your current plan level is XXX
+ You have been a member since XXX
+ $cost/month OR $cost/year
+
+ You are using N basic layouts
+ Buy more
+
+ You are using N pro layouts
+ Buy more / Upgrade your account
+
+ Cancel your subscription
+ [[ } ]]
+ </li>
+ </ul>
+ </form>
+ </div>
+</div>