Files
Anthias/webview/res/access_denied.html
2020-11-25 01:25:50 -05:00

71 lines
1.5 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Access denied</title>
<style type="text/css">
@font-face {
font-family: Roboto;
src: url('google-roboto-regular-webfont.woff2') format('woff2'),
url('google-roboto-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
background-color: #ecebe5;
}
b {
font-weight: bold;
}
.logo {
position: absolute;
width: 138px;
right: 34px;
top: 32px;
}
.center {
position: absolute;
top: 38%;
left: 36%;
width: 640;
}
h1 {
margin: 0;
font-size: 32px;
font-weight: 100;
color: rgba(0, 0, 0, 0.8);
margin-top: -5px;
}
.description {
font-family: Roboto, Helvetica, Arial, sans-serif;
}
.description p {
font-size: 18px;
line-height: 21px;
color: rgba(0, 0, 0, 0.54);
margin: 3px 0px 5px 0;
}
.description a {
text-decoration: none;
color: #0779F9;
}
.lock {
float: left;
width: 85px;
margin-right: 20px;
}
</style>
</head>
<body>
<img src="screenly-logo.png" alt="" class="logo">
<div class="center">
<img src="lock.png" class="lock" alt="">
<div class="description">
<h1>This webpage is protected.</h1>
<p>The page you're trying to open is protected.<br>To display it, specify the asset URL <br>in the following format:</p>
<a href="#">http://<strong>username</strong>:<strong>password</strong>@example.com</a>
</div>
</div>
</body>
</html>