Files
thetempusproject/app/plugins/donate/views/donate.html
2024-12-05 15:33:25 -05:00

37 lines
2.2 KiB
HTML

<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="jumbotron text-center">
<h1>Support Our Projects</h1>
<p>Your funding helps provide more time and resources, enables exciting new projects, and ensures continued updates and improvements to all of our services.</p>
<p>By contributing, you're supporting these platforms:</p>
<ul class="list-unstyled">
<li><strong>AllTheBookmarks.com</strong> - Your one-stop bookmark management service.</li>
<li><strong>ForgottenPlanner.com</strong> - Keep your plans on track.</li>
<li><strong>TempusToolkit.com</strong> - Time management made easier.</li>
<li><strong>WoWditions.com</strong> - Enhancing your World of Warcraft experience.</li>
<li><strong>WhatsThatUploadSite.com</strong> - Simplified upload site discovery.</li>
<li><strong>PollingDownTheStreet.com</strong> - Find your local polling station effortlessly.</li>
</ul>
<p>Every donation helps us grow and continue providing value to our community. Thank you for your support!</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<form action="" method="POST" role="form">
<div class="form-group">
<label for="donation-amount">Donation Amount ($):</label>
<input type="number" class="form-control" id="donation-amount" name="amount" placeholder="Enter amount">
</div>
<div class="form-group">
<label for="donation-comment">Leave a Comment (Optional):</label>
<textarea class="form-control" id="donation-comment" name="comment" rows="4" placeholder="Share your thoughts or specify how you'd like your donation to be used."></textarea>
</div>
<input type="hidden" name="token" value="{TOKEN}">
<button type="submit" value="submit" name="submit" class="btn btn-primary btn-lg btn-block">Donate Now</button>
</form>
</div>
</div>
</div>