-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5184 from gitcoinco/fix/tips-metamask
remove _alert already used and fix metamask
- Loading branch information
Showing
3 changed files
with
48 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,45 @@ | ||
{% extends 'onepager/base.html' %} | ||
{% comment %} | ||
Copyright (C) 2018 Gitcoin Core | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
{% endcomment %} | ||
{% load i18n static %} | ||
{% block 'scripts' %} | ||
<script src="{% static "v2/js/amounts.js" %}"></script> | ||
<script src="{% static "onepager/js/web3alert.js" %}"></script> | ||
{% endblock %} | ||
<!-- Main --> | ||
{% block 'main' %} | ||
<section id="main"> | ||
<header> | ||
<span class="avatar"> | ||
<a href="{% url "tip" %}"> | ||
<img src="{% static "v2/images/helmet.png" %}" style="background-color: white; max-width: 100px; max-height: 100px;" /> | ||
</a> | ||
</span> | ||
<h1>{% trans "Send Tip" %} <span class="emoji">⚡</span></h1> | ||
<h3>{% trans "It's Fast. It's Easy. It's Free.️" %}</h3> | ||
<p>({% trans "Supports any github username or email address" %})</p> | ||
<br> | ||
<select id="batches" style="background:transparent; display: none; margin-bottom: 20px; margin-top: -20px" > | ||
<option value="1">1 {% trans "receipient" %}</option> | ||
<option value="5">5 {% trans "receipients" %}</option> | ||
<option value="10">10 {% trans "receipients" %}</option> | ||
<option value="20">20 {% trans "receipients" %}</option> | ||
<option value="50">50 {% trans "receipients" %}</option> | ||
</select> | ||
</header> | ||
<a href="{% url "send_tip_2" %}" id="neweth" class="button button--primary">{% trans "Send Tip" %} <span class="emoji">💰</span></a> | ||
</section> | ||
{% endblock %} | ||
{% extends 'onepager/base.html' %} | ||
{% comment %} | ||
Copyright (C) 2018 Gitcoin Core | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
{% endcomment %} | ||
{% load i18n static %} | ||
{% block 'scripts' %} | ||
<script src="{% static "v2/js/amounts.js" %}"></script> | ||
{% endblock %} | ||
<!-- Main --> | ||
{% block 'main' %} | ||
<section id="main"> | ||
<header> | ||
<span class="avatar"> | ||
<a href="{% url "tip" %}"> | ||
<img src="{% static "v2/images/helmet.png" %}" style="background-color: white; max-width: 100px; max-height: 100px;" /> | ||
</a> | ||
</span> | ||
<h1>{% trans "Send Tip" %} <span class="emoji">⚡</span></h1> | ||
<h3>{% trans "It's Fast. It's Easy. It's Free.️" %}</h3> | ||
<p>({% trans "Supports any github username or email address" %})</p> | ||
<br> | ||
<select id="batches" style="background:transparent; display: none; margin-bottom: 20px; margin-top: -20px" > | ||
<option value="1">1 {% trans "receipient" %}</option> | ||
<option value="5">5 {% trans "receipients" %}</option> | ||
<option value="10">10 {% trans "receipients" %}</option> | ||
<option value="20">20 {% trans "receipients" %}</option> | ||
<option value="50">50 {% trans "receipients" %}</option> | ||
</select> | ||
</header> | ||
<a href="{% url "send_tip_2" %}" id="neweth" class="button button--primary">{% trans "Send Tip" %} <span class="emoji">💰</span></a> | ||
</section> | ||
{% endblock %} |