/**
 * Create HTML form to enter a new record with the minimum necessary fields.
 */
function get_new_record_form()
{
    require_once 'modules/Paper/PaperFormBase.php';
    $form = new PaperFormBase();
    return $form->getForm('');
}