forked from blockcypher/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribe_address.html
47 lines (38 loc) · 1.1 KB
/
subscribe_address.html
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
{% extends "base.html" %}
{% load i18n %}
{% load humanize %}
{% load btc_formats %}
{% load static %}
{% block title %}
Subscribe to a {{ coin_symbol|coin_symbol_to_display_name }} Address
{% endblock title %}
{% block page_header %}
<h1>
<i class="fa fa-send"></i>
Subscribe to an Address
</h1>
{% endblock page_header %}
{% block content %}
<div class="section">
<div class="container">
<form role="form" method="post" action="{% url 'subscribe_address' coin_symbol %}">
{% load crispy_forms_tags %}
{{ form|crispy }}
{% csrf_token %}
<p class="text-center">
<button type="submit" class="btn btn-primary btn-lg">{% trans "Subscribe" %} </button>
</p>
</form>
{% if not user.is_authenticated %}
<p>
If you have an account, please
<a href="{% url 'user_login' %}">login</a>.
</p>
{% endif %}
<p class="small">
Please note that addresses receiving extremely high transaction volumes will be automatically disabled.
Normal wallets should not be affected.
</p>
</div>
</div>
{% endblock content %}