summaryrefslogtreecommitdiff
path: root/views/partials/edit-subscription.ejs
blob: adc3f71467830a34a95c28bc902db489762a6aa4 (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
<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>
				<div id="free_plan">
					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>
				</div>
				<div id="free_plan">
					Your current plan level is <span id="user_plan_type"></span>

					<table>
						<tr>
							<td>Basic plan</td>
							<td></td>
							<td>@ $<span></span>/<span></span></td>
						</tr>
						<tr>
							<td>Additional basic layouts</td>
							<td></td>
							<td>@ $<span></span>/<span></span></td>
							<td>Buy more</td>
						</tr>
						<tr>
							<td>Additional PRO layouts</td>
							<td></td>
							<td>$<span></span>/<span></span></td>
							<td>Buy more</td>
						</tr>
						<tr>
							<td>Total</td>
							<td></td>
							<td>$<span></span>/<span></span></td>
						</tr>
					</table>

					<button>Upgrade your subscription</button>
					
					<button>Cancel your subscription</button>
				</li>
			</ul>
		</form>
	</div>
</div>