2021-10-20 10:20:14 +00:00
|
|
|
{{define "components/error"}}
|
2021-10-20 14:02:10 +00:00
|
|
|
<div class="notification is-danger is-light" id="error_view">
|
|
|
|
<button class="delete"></button>
|
|
|
|
<p id="err_msg"></p>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
function ErrorTog(){
|
|
|
|
let el = document.getElementById('error_view');
|
|
|
|
el.classList.toggle('is-active');
|
|
|
|
}
|
|
|
|
function ShowError(msg){
|
|
|
|
let el = document.getElementById('err_msg');
|
|
|
|
el.innerHTML = msg;
|
|
|
|
ErrorTog();
|
|
|
|
}
|
|
|
|
</script>
|
2021-10-20 10:20:14 +00:00
|
|
|
{{end}}
|