33 lines
726 B
PHP
33 lines
726 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>What are you doing?</title>
|
||
|
<link rel="stylesheet" href="<?=url('/static/style/fonts.css')?>">
|
||
|
</head>
|
||
|
<body>
|
||
|
<style>
|
||
|
#errordialog {
|
||
|
background: tomato;
|
||
|
color: white;
|
||
|
background: rgba(0, 0, 0, 0.75);
|
||
|
padding: .75rem;
|
||
|
border: 1px solid #aaa;
|
||
|
}
|
||
|
a {
|
||
|
color: #0f0;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<div id="errordialog">
|
||
|
|
||
|
<h2><?=$error?></h2>
|
||
|
|
||
|
<a href="">I understand.</a>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|