You've already forked hotpocket
BTHLABS-58: Share Extension in Apple Apps
This commit is contained in:
@@ -11,8 +11,27 @@
|
||||
<div class="alert alert-success mt-3" role="alert">
|
||||
<h4 class="alert-heading">{% translate 'Done!' %}</h4>
|
||||
<p class="lead mb-0">
|
||||
{% translate "You've successfully logged in to the extension." %}
|
||||
{% if app_redirect_url %}
|
||||
{% translate "You've successfully logged in to the application." %}
|
||||
{% else %}
|
||||
{% translate "You've successfully logged in to the extension." %}
|
||||
{% endif %}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block page_scripts %}
|
||||
{% if app_redirect_url %}
|
||||
<script type="text/javascript">
|
||||
(() => {
|
||||
window.setTimeout(
|
||||
() => {
|
||||
window.location.replace('{{ app_redirect_url|safe }}');
|
||||
},
|
||||
1000,
|
||||
);
|
||||
})();
|
||||
</script>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user