56 lines
2.4 KiB
HTML
56 lines
2.4 KiB
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="min-h-screen bg-dark py-8 px-4">
|
||
|
<div class="max-w-xl mx-auto bg-dark-lighter rounded-lg shadow-lg p-6">
|
||
|
<h1 class="text-2xl font-bold mb-6 text-center">Subscribe to VPN Service</h1>
|
||
|
|
||
|
<form id="subscription-form" class="space-y-6">
|
||
|
<div>
|
||
|
<label for="email" class="block text-sm font-medium mb-2">Email Address</label>
|
||
|
<input
|
||
|
type="email"
|
||
|
id="email"
|
||
|
required
|
||
|
class="w-full px-3 py-2 bg-dark border border-gray-600 rounded-md text-white focus:outline-none focus:border-blue-500"
|
||
|
placeholder="your@email.com"
|
||
|
>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<label class="block text-sm font-medium mb-2">Duration</label>
|
||
|
<div class="space-y-4">
|
||
|
<input
|
||
|
type="range"
|
||
|
id="duration-slider"
|
||
|
min="1"
|
||
|
max="720"
|
||
|
value="24"
|
||
|
class="w-full"
|
||
|
>
|
||
|
<div class="flex justify-between text-sm text-gray-400">
|
||
|
<button type="button" data-hours="1" class="duration-preset hover:text-blue-400">1 Hour</button>
|
||
|
<button type="button" data-hours="24" class="duration-preset hover:text-blue-400">1 Day</button>
|
||
|
<button type="button" data-hours="168" class="duration-preset hover:text-blue-400">1 Week</button>
|
||
|
<button type="button" data-hours="720" class="duration-preset hover:text-blue-400">1 Month</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<p id="duration-display" class="mt-2 text-center text-gray-400"></p>
|
||
|
</div>
|
||
|
|
||
|
<div class="text-center">
|
||
|
<p class="text-2xl font-bold text-blue-400">
|
||
|
<span id="price-display">-</span> sats
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<button
|
||
|
type="submit"
|
||
|
class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded transition-colors"
|
||
|
>
|
||
|
Pay with Bitcoin
|
||
|
</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|