21 lines
812 B
HTML
21 lines
812 B
HTML
<div class="toast-container position-fixed bottom-0 end-0 p-3">
|
|
<div id="copyToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
|
|
<div class="toast-header">
|
|
<i class="fas fa-check-circle text-success me-2"></i>
|
|
<strong class="me-auto">{% trans "Success" %}</strong>
|
|
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
|
|
</div>
|
|
<div class="toast-body">
|
|
{% blocktrans with text=text %}Copied "{{ text }}" to clipboard!{% endblocktrans %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Show toast notification
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const toast = new bootstrap.Toast(document.getElementById('copyToast'));
|
|
toast.show();
|
|
});
|
|
</script>
|