You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
774 B
Smarty
31 lines
774 B
Smarty
12 years ago
|
<div class="formwrapper">
|
||
|
<h2 class="spaced">Change pledge amount</h2>
|
||
|
|
||
|
{%if isempty|errors == false}
|
||
|
{%foreach error in errors}
|
||
|
<div class="errors">
|
||
|
{%?error}
|
||
|
</div>
|
||
|
{%/foreach}
|
||
|
{%/if}
|
||
|
|
||
|
<form method="post" action="/manage/{%?email}/{%?key}/change-amount">
|
||
|
<div class="formfield">
|
||
|
<label>Currency</label>
|
||
|
{%select name="currency"}
|
||
|
{%option value="usd" text="US Dollar"}
|
||
|
{%option value="eur" text="Euro"}
|
||
|
{%option value="btc" text="Bitcoin"}
|
||
|
{%/select}
|
||
|
</div>
|
||
|
<div class="formfield">
|
||
|
<label>Amount per month</label>
|
||
|
{%input type="text" name="amount"}
|
||
|
<div class="clear"></div>
|
||
|
</div>
|
||
|
<div class="formfield submit">
|
||
|
<button type="submit" name="submit" value="submit">Save changes</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|