custom1/index.html

23 lines
821 B
HTML
Raw Normal View History

SafeValue must use [property]=binding:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="page-wrapper">
</div>
<script>
// Simple script to ensure styles are applied
document.addEventListener('DOMContentLoaded', function() {
// Force a repaint to ensure styles are applied
document.body.style.display = 'none';
setTimeout(function() { document.body.style.display = ''; }, 10);
});
</script>
</body>
</html> (see https://g.co/ng/security#xss)