You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
775 B
HTML
30 lines
775 B
HTML
<style>
|
|
.error {
|
|
display:grid;
|
|
grid-template-columns: 48px auto;
|
|
gap:8px;
|
|
align-items: center;
|
|
align-content: center;
|
|
width:650px;
|
|
}
|
|
.error .fa-triangle-exclamation {font-size:48px; color:maroon;}
|
|
</style>
|
|
<script>
|
|
$(document).ready(function(){
|
|
var _msg = sessionStorage.error_mesage
|
|
$('.error .message').html(_msg)
|
|
})
|
|
</script>
|
|
<div class="error">
|
|
<div>
|
|
<i class="fa-solid fa-triangle-exclamation"></i>
|
|
</div>
|
|
<div class="message"></div>
|
|
</div>
|
|
<p>
|
|
<div class="border border-round" align="center" style="margin-left:25%; width:50%"
|
|
onclick="$('.jxmodal').slideUp( function(){ $('.jxmodal').remove()})"
|
|
>
|
|
<div class="active">Okay</div>
|
|
</div>
|
|
</p> |