diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-01-28 19:18:27 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-01-28 20:21:49 -0500 |
| commit | 5adac681bdb43b8b709795fa501689fb9ae8a4e1 (patch) | |
| tree | 635ad1f56013840f60dba46e4ba8fd0261353f3b /views/about | |
| parent | e3ff5315f7ea7421431658077253c4d71f0f5731 (diff) | |
many methods
Diffstat (limited to 'views/about')
| -rw-r--r-- | views/about/brochure.ejs | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/views/about/brochure.ejs b/views/about/brochure.ejs index 49b03db..1dad763 100644 --- a/views/about/brochure.ejs +++ b/views/about/brochure.ejs @@ -34,12 +34,11 @@ <li> VValls logo appears when embedding an exhibition on a web page <li> [[ if (! logged_in) { ]] - <button href="/signup">Sign Up</button> - [[ } else if (! user.plan_level || user.plan_level < plan.level) { ]] - <button href="https://vvalls.recurly.com/subscribe/basic/[[- user._id ]]/[[- user.username ]]">Buy Now</button> + <button data-role="show-signup-modal">Sign Up</button> + [[ } else if (! user.plan_level) { ]] + <a href="https://vvalls.recurly.com/subscribe/basic-monthly/[[- user._id ]]/[[- user.username ]]"><button>Buy Now</button></a> [[ } else if (user.plan_level == plan.level) { ]] Current Level - [[ } else { ]] [[ } ]] </ul> </div> @@ -56,11 +55,13 @@ <li> No VValls logo on embed <li> [[ if (! logged_in) { ]] - <button href="/signup">Sign Up</button> - [[ } else if (! user.plan_level || user.plan_level < plan.level) { ]] - <button href="https://vvalls.recurly.com/subscribe/pro/[[- user._id ]]/[[- user.username ]]">Buy Now</button> + <button data-role="show-signup-modal">Sign Up</button> + [[ } else if (! user.plan_level) { ]] + <a href="https://vvalls.recurly.com/subscribe/pro-monthly/[[- user._id ]]/[[- user.username ]]"><button>Buy Now</button></a> [[ } else if (user.plan_level == plan.level) { ]] Current Level + [[ } else if (user.plan_level < plan.level) { ]] + <a href="/profile/billing"><button>Upgrade Now</button></a> [[ } ]] </ul> </div> |
