summaryrefslogtreecommitdiff
path: root/views/partials/edit-subscription.ejs
blob: 69ec88d81393877a257072e45c0eaaff006d1553 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="mediaDrawer fixed animate editSubscription">
	<span class="close">X</span>
	<div id="form_container">
		<form>
			<input type="hidden" name="_csrf" value="[[- token ]]">
			<ul>
				<li class="section_break">
					<h3>Edit Subscription</h3>
				</li>
				<li class="freePlan">
					You are currently using the free version of Vvalls.  For access to all of Vvalls features,
					consider upgrading to a paid plan.
					<br><br>
					<div class="planList"></div>
					<br><br><br>
				</li>
				<li class="paidPlan">
					Your current plan level is <span data-role="planName"></span>
					<table class="planInfo">
						<tr class="planRow">
							<th><span data-role="planName"></span></th>
							<td></td>
							<td></td>
							<td>$<span data-role="planCost"></span>/<span data-role="billingInterval"></span></td>
						</tr>
						<tr class="basicLayoutRow">
							<th>Additional Basic layouts</th>
							<td><span data-role="basicLayoutQuantity"></span></td>
							<td>each $<span data-role="basicLayoutCost"></span>/<span data-role="billingInterval"></span></td>
							<td>$<span data-role="basicLayoutTotal"></span>/<span data-role="billingInterval"></span></td>
						</tr>
						<tr class="proLayoutRow">
							<th>Additional Pro layouts</th>
							<td><span data-role="proLayoutQuantity"></span></td>
							<td>@ $<span data-role="proLayoutCost"></span> ...</td>
							<td>$<span data-role="proLayoutTotal"></span>/<span data-role="billingInterval"></span></td>
						</tr>
						<tr class="totalRow">
							<td></td>
							<td></td>
							<th>Total</th>
							<td>$<span data-role="planTotal"></span>/<span data-role="billingInterval"></span></td>
						</tr>
					</table>
					<button data-role="addLayouts">Buy more layouts</button>				
					<button data-role="changePlan">Upgrade your plan</button>				
					<button data-role="cancelSubscription">Cancel your subscription</button>
				</li>
				<div class="gear"><span class="ion-gear-a"></span></div>
			</ul>
		</form>
	</div>
</div>