Customize pages by adding raw code.
In the sourcecode view, the templates have a space to drop in raw code. At the top of the document, there is space to add code before the closing head tag, after the opening body tag, and before the closing body tag. Add whatever code should be outputted between the appropriate tag.
<headcode></headcode> <!-- before closing head tag -->
<bodycode></bodycode> <!-- after opening body tag -->
<footcode></footcode> <!-- before closing body tag -->
The code insert is used on Forms and Academics Sort.
There is also the ability to add code at the top of the document, prior to the doctype declaration.
<doccode>
<?php session_start();
$_SESSION = array();
session_regenerate_id(true);
?>
</doccode>