mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
53c40a94fa
BUG Resolve issue with error redirection being ignored within CMS BUG Fix issue with invalid securityID being re-emitted on failure
18 lines
263 B
Scheme
18 lines
263 B
Scheme
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<% base_tag %>
|
|
<title>$Title</title>
|
|
</head>
|
|
<body class="cms cms-security">
|
|
<h1>$Title</h1>
|
|
<% if $Content %>
|
|
<div class="Content">$Content</div>
|
|
<% end_if %>
|
|
<div class="Form">
|
|
$Form
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|