You are here

securesite-dialog.tpl.php in Secure Site 6

Same filename and directory in other branches
  1. 5 securesite-dialog.tpl.php

File

securesite-dialog.tpl.php
View source
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title><?php

print variable_get('site_name', 'Drupal');
?></title>
<style type="text/css">
html {
  background: white;
}

body {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 76%;
  width: 30em;
  margin: 5em auto;
  border: 1px #BBB solid;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  padding: 1em;
  background: #EEE;
  color: black;
}

#login p, #reset p {
  font-weight: bold;
}

#password, #mail {
  padding: 1em;
  text-align: center;
}

.error {
  color: red;
}

.status {
  color: #3a3;
}

h1 {
  margin-top: 0;
  text-align: center;
}

form p {
  text-align: right;
}

input {
  width: 12em;
}
</style>
</head>
<body>
  <?php

print $content;
?>
</body>
</html>