summaryrefslogtreecommitdiff
path: root/views/partials/edit-subscription.ejs
blob: 0aa5281376ef7e4ae1d8bf6e3121adbedb4641ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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>